PostgreSQL driver and toolkit for Go
 
 
 
Go to file
Jack Christensen 91cba90e8d Fix: RowScanner errors are fatal to Rows
https://github.com/jackc/pgx/issues/1654
2023-06-20 08:48:06 -05:00
.github CI: run tests in verbose mode 2023-06-19 17:06:21 -05:00
ci CockroachDB tests: use a more recent version 2023-06-19 17:06:21 -05:00
examples
internal Remove nbconn 2023-06-12 09:39:26 -05:00
log/testingadapter
pgconn Because CI runs on a potato 2023-06-20 08:43:06 -05:00
pgproto3 Fix tests for iobufpool optimization 2023-01-28 09:30:12 -06:00
pgtype fix concurrency bug in pgtype.defaultMap (#1650) 2023-06-18 08:23:56 -05:00
pgxpool Allow more time for test on slow CI 2023-06-18 08:36:03 -05:00
pgxtest Skipped multirange tests for postgres less than 14 version 2022-12-01 19:33:33 -06:00
stdlib stdlib: add a concurrency test 2023-06-19 17:06:21 -05:00
testsetup Contributing guide now includes instructions to test client ssl auth 2022-10-29 19:00:29 -05:00
tracelog Use context timeouts for tracelog tests 2023-05-29 11:23:21 -05:00
.gitignore Use DefaultQueryExecMode in CopyFrom 2022-12-23 13:22:26 -06:00
CHANGELOG.md Release v5.4.1 2023-06-18 08:27:21 -05:00
CONTRIBUTING.md Update CONTRIBUTING.md 2022-11-12 10:42:02 -06:00
LICENSE
README.md feat: add reference to pgx-slog adapter 2023-06-12 09:37:20 -05:00
Rakefile
batch.go Fix error when using BatchResults.Exec 2023-04-20 21:43:59 -05:00
batch_test.go Use context timeouts in more tests 2023-05-29 10:25:57 -05:00
bench_test.go Remove nbconn 2023-06-12 09:39:26 -05:00
conn.go Add docs clarifying that FieldDescriptions may return nil 2023-06-14 07:42:11 -05:00
conn_internal_test.go pgx.Conn: Fix memory leak: Delete items from preparedStatements 2023-05-20 08:06:37 -05:00
conn_test.go Use context timeouts in more tests 2023-05-29 10:25:57 -05:00
copy_from.go Set socket to non-blocking mode in `Read`, `Flush` and `BufferReadUntilBlock` operations 2023-03-24 17:51:34 -05:00
copy_from_test.go copy tests: test all supported modes 2023-06-15 20:54:24 -05:00
doc.go Unregistered OIDs are handled the same as unknown OIDs 2022-12-23 13:14:56 -06:00
extended_query_builder.go Fix encode to json ignoring driver.Valuer 2022-12-23 13:44:09 -06:00
go.mod chore: update version of golang.org/x/crypto library from v0.6.0 to v0.9.0 2023-05-29 09:20:51 -05:00
go.sum chore: update version of golang.org/x/crypto library from v0.6.0 to v0.9.0 2023-05-29 09:20:51 -05:00
helper_test.go
large_objects.go
large_objects_test.go
named_args.go
named_args_test.go
pgbouncer_test.go
pipeline_test.go
query_test.go TestQueryEncodeError: crdb now returns the same error as postgres 2023-06-19 17:06:21 -05:00
rows.go Fix: RowScanner errors are fatal to Rows 2023-06-20 08:48:06 -05:00
rows_test.go Fix: RowScanner errors are fatal to Rows 2023-06-20 08:48:06 -05:00
tracer.go
tracer_test.go Use context timeouts in more tests 2023-05-29 10:25:57 -05:00
tx.go Add TxOptions.BeginQuery to allow overriding the default BEGIN query 2023-06-18 06:43:17 -05:00
tx_test.go Add TxOptions.BeginQuery to allow overriding the default BEGIN query 2023-06-18 06:43:17 -05:00
values.go
values_test.go Use context timeouts in more tests 2023-05-29 10:25:57 -05:00

README.md

Go Reference Build Status

pgx - PostgreSQL Driver and Toolkit

pgx is a pure Go driver and toolkit for PostgreSQL.

The pgx driver is a low-level, high performance interface that exposes PostgreSQL-specific features such as LISTEN / NOTIFY and COPY. It also includes an adapter for the standard database/sql interface.

The toolkit component is a related set of packages that implement PostgreSQL functionality such as parsing the wire protocol and type mapping between PostgreSQL and Go. These underlying packages can be used to implement alternative drivers, proxies, load balancers, logical replication clients, etc.

Example Usage

package main

import (
	"context"
	"fmt"
	"os"

	"github.com/jackc/pgx/v5"
)

func main() {
	// urlExample := "postgres://username:password@localhost:5432/database_name"
	conn, err := pgx.Connect(context.Background(), os.Getenv("DATABASE_URL"))
	if err != nil {
		fmt.Fprintf(os.Stderr, "Unable to connect to database: %v\n", err)
		os.Exit(1)
	}
	defer conn.Close(context.Background())

	var name string
	var weight int64
	err = conn.QueryRow(context.Background(), "select name, weight from widgets where id=$1", 42).Scan(&name, &weight)
	if err != nil {
		fmt.Fprintf(os.Stderr, "QueryRow failed: %v\n", err)
		os.Exit(1)
	}

	fmt.Println(name, weight)
}

See the getting started guide for more information.

Features

  • Support for approximately 70 different PostgreSQL types
  • Automatic statement preparation and caching
  • Batch queries
  • Single-round trip query mode
  • Full TLS connection control
  • Binary format support for custom types (allows for much quicker encoding/decoding)
  • COPY protocol support for faster bulk data loads
  • Tracing and logging support
  • Connection pool with after-connect hook for arbitrary connection setup
  • LISTEN / NOTIFY
  • Conversion of PostgreSQL arrays to Go slice mappings for integers, floats, and strings
  • hstore support
  • json and jsonb support
  • Maps inet and cidr PostgreSQL types to netip.Addr and netip.Prefix
  • Large object support
  • NULL mapping to pointer to pointer
  • Supports database/sql.Scanner and database/sql/driver.Valuer interfaces for custom types
  • Notice response handling
  • Simulated nested transactions with savepoints

Choosing Between the pgx and database/sql Interfaces

The pgx interface is faster. Many PostgreSQL specific features such as LISTEN / NOTIFY and COPY are not available through the database/sql interface.

The pgx interface is recommended when:

  1. The application only targets PostgreSQL.
  2. No other libraries that require database/sql are in use.

It is also possible to use the database/sql interface and convert a connection to the lower-level pgx interface as needed.

Testing

See CONTRIBUTING.md for setup instructions.

Supported Go and PostgreSQL Versions

pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For Go that is the two most recent major releases and for PostgreSQL the major releases in the last 5 years. This means pgx supports Go 1.19 and higher and PostgreSQL 11 and higher. pgx also is tested against the latest version of CockroachDB.

Version Policy

pgx follows semantic versioning for the documented public API on stable releases. v5 is the latest stable major version.

PGX Family Libraries

github.com/jackc/pglogrepl

pglogrepl provides functionality to act as a client for PostgreSQL logical replication.

github.com/jackc/pgmock

pgmock offers the ability to create a server that mocks the PostgreSQL wire protocol. This is used internally to test pgx by purposely inducing unusual errors. pgproto3 and pgmock together provide most of the foundational tooling required to implement a PostgreSQL proxy or MitM (such as for a custom connection pooler).

github.com/jackc/tern

tern is a stand-alone SQL migration system.

github.com/jackc/pgerrcode

pgerrcode contains constants for the PostgreSQL error codes.

Adapters for 3rd Party Types

Adapters for 3rd Party Tracers

Adapters for 3rd Party Loggers

These adapters can be used with the tracelog package.

3rd Party Libraries with PGX Support

github.com/pashagolub/pgxmock

pgxmock is a mock library implementing pgx interfaces. pgxmock has one and only purpose - to simulate pgx behavior in tests, without needing a real database connection.

github.com/georgysavva/scany

Library for scanning data from a database into Go structs and more.

github.com/vingarcia/ksql

A carefully designed SQL client for making using SQL easier, more productive, and less error-prone on Golang.

https://github.com/otan/gopgkrb5

Adds GSSAPI / Kerberos authentication support.

github.com/wcamarao/pmx

Explicit data mapping and scanning library for Go structs and slices.

github.com/stephenafamo/scan

Type safe and flexible package for scanning database data into Go types. Supports, structs, maps, slices and custom mapping functions.

https://github.com/z0ne-dev/mgx

Code first migration library for native pgx (no database/sql abstraction).