PostgreSQL driver and toolkit for Go
 
 
 
Go to file
Felix Röhrich 05e72a5ab1 make connection logic more forgiving 2025-02-17 21:24:38 +01:00
.github Drop PG 12 support and add PG 17 to CI 2025-01-11 07:49:26 -06:00
ci Use latest version of CockroachDB for CI 2025-01-25 08:04:42 -06:00
examples Remove some now unused pgtype code 2023-07-10 20:23:42 -05:00
internal optimisations of quote functions by @sean- 2024-12-28 13:31:09 +02:00
log/testingadapter Remove pgx logging code moved to tracelog 2022-07-23 08:54:59 -05:00
multitracer feat: add pool tracing to 'MultiTracer' & move it to another package 2024-07-13 17:04:04 +03:00
pgconn make connection logic more forgiving 2025-02-17 21:24:38 +01:00
pgproto3 Fix method comment in PasswordMessage 2024-12-29 20:59:24 +08:00
pgtype Merge pull request #2236 from felix-roehrich/fr/fix-plan-scan 2025-01-25 08:56:38 -06:00
pgxpool Expose puddle.Pool's EmptyAcquireWaitTime in pgxpool's Stats 2024-12-26 13:46:49 +05:30
pgxtest Skipped multirange tests for postgres less than 14 version 2022-12-01 19:33:33 -06:00
stdlib feat: add pgtype.XMLCodec based on pgtype.JSONCodec 2024-07-11 15:17:55 -05:00
testsetup Handle errors in generate_certs 2024-12-18 02:31:56 +02:00
tracelog Fix data race with TraceLog.Config initialization 2024-09-10 07:06:39 -05:00
.gitignore Use DefaultQueryExecMode in CopyFrom 2022-12-23 13:22:26 -06:00
CHANGELOG.md Added missed change to v5.7.2 changelog 2025-02-08 10:21:39 -06:00
CONTRIBUTING.md Add ltree extension requirement. 2024-05-18 07:56:47 -05:00
LICENSE Update copyright date 2021-03-25 10:08:09 -04:00
README.md Add https://github.com/nikolayk812/pgx-outbox to README.md 2025-01-25 08:59:52 -06:00
Rakefile Update comments in generated code to align with Go standards 2024-12-21 20:21:32 +02:00
batch.go Document that batched queries should not contain multiple statements 2024-07-03 22:49:02 -05:00
batch_test.go Fix prepared statement already exists on batch prepare failure 2024-09-13 08:03:37 -05:00
bench_test.go Add benchmarks for RowToStructBy(Pos|Name) 2024-04-16 12:59:40 -05:00
conn.go Call out []byte in QueryExecModeSimpleProtocol documentation 2025-01-25 07:15:02 -06: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 TestErrNoRows: remove bad test case 2024-12-28 13:39:01 +02:00
copy_from.go Allowed nxtf to signal end of data by returning nil,nil 2023-11-11 10:06:58 -06:00
copy_from_test.go Improve CopyFrom auto-conversion of text-ish values 2024-02-03 09:49:56 -06:00
derived_types.go Merge pull request #2206 from alexandear/refactor-impossible-cond 2024-12-24 11:14:17 -06:00
derived_types_test.go Fix bug relating to reuse of types 2024-07-07 11:26:19 +10:00
doc.go feat: add pool tracing to 'MultiTracer' & move it to another package 2024-07-13 17:04:04 +03:00
extended_query_builder.go Only use anynil inside of pgtype 2024-05-18 21:06:23 -05:00
go.mod update golang.org/x/crypto v0.27.0 => v0.31.0 2024-12-12 12:58:14 +00:00
go.sum update golang.org/x/crypto v0.27.0 => v0.31.0 2024-12-12 12:58:14 +00:00
helper_test.go Fix some bad rows.Err() handlings in tests 2022-10-14 19:02:44 -05:00
large_objects.go Use pgtype.PreallocBytes in LargeObject's Read. 2024-05-14 07:03:24 -05:00
large_objects_private_test.go Support large large objects. 2024-01-15 08:50:55 -06:00
large_objects_test.go Support large large objects. 2024-01-15 08:50:55 -06:00
named_args.go StrictNamedArgs 2024-03-16 10:59:31 -05:00
named_args_test.go StrictNamedArgs 2024-03-16 10:59:31 -05:00
pgbouncer_test.go Remove ConnConfig.BuildStatementCache 2022-03-12 09:23:40 -06:00
pgx_test.go Load types using a single SQL query 2024-07-01 15:34:17 +10:00
pipeline_test.go Expose pgx functionality for manual integration with pgconn 2022-07-04 13:29:49 -05:00
query_test.go Include the field name in error messages when scanning structs 2025-01-11 14:31:24 -05:00
rows.go Include the field name in error messages when scanning structs 2025-01-11 14:31:24 -05:00
rows_test.go formatting 2024-07-11 23:30:28 -04:00
tracer.go feat: add pool tracing to 'MultiTracer' & move it to another package 2024-07-13 17:04:04 +03:00
tracer_test.go feat: add pool tracing to 'MultiTracer' & move it to another package 2024-07-13 17:04:04 +03:00
tx.go remove unused func and parameter 2024-12-22 23:48:08 +07:00
tx_test.go Fix staticcheck issues 2023-07-28 18:04:31 -05:00
values.go Only use anynil inside of pgtype 2024-05-18 21:06:23 -05:00
values_test.go Include the field name in error messages when scanning structs 2025-01-11 14:31:24 -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.

Architecture

See the presentation at Golang Estonia, PGX Top to Bottom for a description of pgx architecture.

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.22 and higher and PostgreSQL 13 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.

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.

github.com/z0ne-dev/mgx

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

github.com/amirsalarsafaei/sqlc-pgx-monitoring

A database monitoring/metrics library for pgx and sqlc. Trace, log and monitor your sqlc query performance using OpenTelemetry.

https://github.com/nikolayk812/pgx-outbox

Simple Golang implementation for transactional outbox pattern for PostgreSQL using jackc/pgx driver.