pgconn icon indicating copy to clipboard operation
pgconn copied to clipboard

Results 25 pgconn issues
Sort by recently updated
recently updated
newest added

There is a rather unique bug when a single connection is being slammed with queries. When statement caching is enabled, and the `deallocateInvalidatedCachedStatements()` method is called to clean up, the...

Fixing IPV4 error for dualstack cluster without IPV6 connectivity #139

When we try to connect to Postgres inside dual-stack network (ipv4 and ipv6) we face confusing error: ``` failed to connect to `host=chinook.chiyepnb01it.eu-west-2.rds.amazonaws.com user=tutorial database=chinook`: dial error (timeout: dial tcp...

Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.6.0 to 0.17.0. Commits 9d2ee97 ssh: implement strict KEX protocol changes 4e5a261 ssh: close net.Conn on all NewServerConn errors 152cdb1 x509roots/fallback: update bundle fdfe1f8 ssh: defer channel...

dependencies

~I'm looking into reducing, or at least better understanding the memory footprint from pgx that a program I have takes up. The profile points to https://github.com/jackc/pgproto3/blob/master/bind.go#L134 being the main cause...

how to pass an array as a one parameter? select * from table where value in ($1) $1=['val1', 'val2'.....]

Signed-off-by: Danang Heriyadi This PR goal is to close issue https://github.com/jackc/pgx/issues/1052

I am working on a CLI tool that uses this library. Currently, pgconn returns an untyped error for "server refused TLS." See https://github.com/jackc/pgconn/blob/7ddbd74d5e5a52cd24f750cacfc9be91d4f49f76/pgconn.go#L379 This causes some friction, as I need...

Hi, I am trying to reduce the amount of connection to a Postgres database, as many libraries open a new connection when trying to LISTEN to a channel. I have...