postgresql-dart icon indicating copy to clipboard operation
postgresql-dart copied to clipboard

Dart PostgreSQL driver: supports extended query format, binary protocol and statement reuse.

Results 43 postgresql-dart issues
Sort by recently updated
recently updated
newest added

First of all, thank you for making such a nice package. There is one thing that is too inconvenient while using it, so I would like to ask for improvement....

I get this exception when i try to connect to postgres server with a dart server app. Interestingly a simple console based app works without any exception, upon doing some...

I am getting an error when I am trying to connect and work with a Postgresql database via a flutter web app. Is there a solution? ``` Error: Unsupported operation:...

I am trying to connect to to an Azure Postgre database (not a virtual machine, the managed one, complete product name: Azure Database for PostgreSQL) and I keep getting this...

Hi, I noticed when testing an upgrade to PostgreSQL14 that there is about a 5-8x connection time increase versus 13.2. I testing separately by running fresh Docker Hub Postgres 13.2...

Use case await connection.transaction((ctx) async { await ctx.query("INSERT INTO table (message) VALUES (**server@localhost:5432/ep**)"); }); Should be valid. Instead it throws substitute value error, while we do not need substitution. Suggestion,...

`timeoutInSeconds` in: ``` connection.query(sqlQuery, timeoutInSeconds: 3600) ``` do not work, My code is fall with timeout exception: `Future not compeleted` on long queries. query timeouts sets only if they are...

I'm running in to a strange issue using this package with GCP Cloud SQL. If I generate a lot of traffic I start to see timeout errors in places I...

How and where would you put the TLS certificate client in your flutter/dart program ? How do you ensure the dart/flutter program is using the correct postgres client certificate ?...

Is it possible to use SSL certificates to connect to the database? If so, how can I do it?