Hi,
How do I make premsql work with PostgreSQL? The db is running in docker and the URL becomes "postgresql://postgres:postgres@localhost:5432/db". But it doesn't seem to work. The custom PostgreSQLExecutor mentioned here also doesn't work. Is there a working example for PostgreSQL?
When I say db_connection_uri=postgresql://postgres:postgres@localhost:5432/db, the error is
OperationalError: unable to open database file
I also tried to replace postgresql:// with postgresql+pg8000://
Thanks
Hi,
How do I make premsql work with PostgreSQL? The db is running in docker and the URL becomes "postgresql://postgres:postgres@localhost:5432/db". But it doesn't seem to work. The custom PostgreSQLExecutor mentioned here also doesn't work. Is there a working example for PostgreSQL?
When I say
db_connection_uri=postgresql://postgres:postgres@localhost:5432/db, the error isOperationalError: unable to open database fileI also tried to replace
postgresql://withpostgresql+pg8000://Thanks