gotosocial/vendor/github.com/jackc/pgx/v5/pgconn
kim a6429b5410 [chore] update dependencies (#4422)
- github.com/jackc/pgx/v5 v5.7.5 -> v5.7.6
- github.com/ncruces/go-sqlite3 v0.28.0 -> v0.29.0
- github.com/tdewolff/minify/v2 v2.24.2 -> v2.24.3
- golang.org/x/oauth2 v0.30.0 -> v0.31.0
- golang.org/x/sys v0.35.0 -> v0.36.0
- golang.org/x/text v0.28.0 -> v0.29.0

Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4422
Co-authored-by: kim <grufwub@gmail.com>
Co-committed-by: kim <grufwub@gmail.com>
2025-09-08 20:53:25 +02:00
..
ctxwatch [chore]: Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.6.0 (#2929) 2024-05-27 09:35:41 +00:00
internal/bgreader [chore]: Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.6.0 (#2929) 2024-05-27 09:35:41 +00:00
auth_scram.go [chore] update dependencies (#4422) 2025-09-08 20:53:25 +02:00
config.go [chore] update dependencies (#4422) 2025-09-08 20:53:25 +02:00
defaults.go [chore] Update a bunch of database dependencies (#1772) 2023-05-12 14:33:40 +02:00
defaults_windows.go [chore] Update a bunch of database dependencies (#1772) 2023-05-12 14:33:40 +02:00
doc.go [chore]: Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.6.0 (#2929) 2024-05-27 09:35:41 +00:00
errors.go [chore] update dependencies (#4422) 2025-09-08 20:53:25 +02:00
krb5.go [chore] update dependencies (#4422) 2025-09-08 20:53:25 +02:00
pgconn.go [chore] update dependencies (#4422) 2025-09-08 20:53:25 +02:00
README.md [chore] Update a bunch of database dependencies (#1772) 2023-05-12 14:33:40 +02:00

pgconn

Package pgconn is a low-level PostgreSQL database driver. It operates at nearly the same level as the C library libpq. It is primarily intended to serve as the foundation for higher level libraries such as https://github.com/jackc/pgx. Applications should handle normal queries with a higher level library and only use pgconn directly when required for low-level access to PostgreSQL functionality.

Example Usage

pgConn, err := pgconn.Connect(context.Background(), os.Getenv("DATABASE_URL"))
if err != nil {
	log.Fatalln("pgconn failed to connect:", err)
}
defer pgConn.Close(context.Background())

result := pgConn.ExecParams(context.Background(), "SELECT email FROM users WHERE id=$1", [][]byte{[]byte("123")}, nil, nil, nil)
for result.NextRow() {
	fmt.Println("User 123 has email:", string(result.Values()[0]))
}
_, err = result.Close()
if err != nil {
	log.Fatalln("failed reading result:", err)
}

Testing

See CONTRIBUTING.md for setup instructions.