PostgreSQL driver and toolkit for Go
 
 
 
Go to file
Jack Christensen b8486d6749 Fix Tx.status not being set on error on Commit
fixes #131
2016-03-24 15:11:04 -05:00
examples Add example of listen/notify support 2014-11-01 10:45:18 -05:00
stdlib Fix skip JSON tests for old servers 2015-11-12 15:43:48 -06:00
.gitignore Rename ConnectionParameters to ConnConfig 2014-05-17 13:38:13 -05:00
.travis.yml Update travis build matrix 2016-03-23 16:57:59 -05:00
CHANGELOG.md Fix Tx.status not being set on error on Commit 2016-03-24 15:11:04 -05:00
LICENSE Add license 2013-07-30 19:05:09 -05:00
README.md Fix typo in README 2016-03-06 18:57:42 +03:00
bench_test.go Add basic benchmark for ConnPoolQueryRow 2016-02-13 13:12:21 -06:00
conn.go Expose encoding and decoding functions 2016-02-15 13:57:11 -06:00
conn_config_test.go.example Support using a custom dialer 2015-04-18 22:42:55 +01:00
conn_config_test.go.travis Support using a custom dialer 2015-04-18 22:42:55 +01:00
conn_pool.go Add ConnPool Prepare and Deallocate 2016-03-04 16:26:27 -06:00
conn_pool_test.go Add ConnPool Prepare and Deallocate 2016-03-04 16:26:27 -06:00
conn_test.go Tweak error reporting on TestFatalRxError 2016-03-15 08:28:07 -05:00
doc.go Add compatibility with database/sql custom types 2015-12-31 14:46:43 -06:00
example_custom_type_test.go Enhance support for custom types 2014-09-19 15:27:15 -05:00
example_json_test.go Fake example if PostgreSQL server too old for JSON 2015-09-04 14:10:18 -05:00
fastpath.go Use binary transcoding for inet/cidr 2015-09-03 11:39:32 -05:00
helper_test.go Fix go vet identified format strings 2016-02-15 12:32:24 -06:00
hstore.go Fix go vet identified format strings 2016-02-15 12:32:24 -06:00
hstore_test.go Fix go vet identified composite leteral uses unkeyed fields 2016-02-15 12:36:48 -06:00
large_objects.go Minor docs fixes for large objects 2015-01-02 17:05:51 -05:00
large_objects_test.go Implement large object support 2015-01-01 22:01:01 -05:00
logger.go Add SetLogger to *Conn 2016-02-12 17:49:04 -06:00
messages.go Use binary transcoding for inet/cidr 2015-09-03 11:39:32 -05:00
msg_reader.go Add *Conn.SetLogLevel 2016-02-13 10:13:10 -06:00
query.go Rows.Scan can ignore column with nil 2016-03-24 14:22:16 -05:00
query_test.go Rows.Scan can ignore column with nil 2016-03-24 14:22:16 -05:00
sql.go Add QueryArgs 2014-05-21 08:17:24 -05:00
sql_test.go Update github.com/JackC to github.com/jackc 2014-06-21 08:36:20 -05:00
stress_test.go Add ConnPool Prepare and Deallocate 2016-03-04 16:26:27 -06:00
tx.go Fix Tx.status not being set on error on Commit 2016-03-24 15:11:04 -05:00
tx_test.go Fix Tx.status not being set on error on Commit 2016-03-24 15:11:04 -05:00
value_reader.go Tweak handling of reading null as raw bytes. 2014-12-23 21:58:48 -06:00
values.go Fix 32-bit GOARCH 2016-03-23 16:57:31 -05:00
values_test.go []uint16, []uint32, and []uint64 encoding and decoding. 2016-03-17 12:14:48 +03:00

README.md

Pgx

Pgx is a a pure Go database connection library designed specifically for PostgreSQL. Pgx is different from other drivers such as pq because, while it can operate as a database/sql compatible driver, pgx is primarily intended to be used directly. It offers a native interface similar to database/sql that offers better performance and more features.

Features

Pgx supports many additional features beyond what is available through database/sql.

  • Listen / notify
  • Transaction isolation level control
  • Full TLS connection control
  • Binary format support for custom types (can be much faster)
  • Logging support
  • Configurable connection pool with after connect hooks to do arbitrary connection setup
  • PostgreSQL array to Go slice mapping for integers, floats, and strings
  • Hstore support
  • JSON and JSONB support
  • Maps inet and cidr PostgreSQL types to net.IPNet
  • Large object support
  • Null mapping to Null* struct or pointer to pointer.
  • Supports database/sql.Scanner and database/sql/driver.Valuer interfaces for custom types

Performance

Pgx performs roughly equivalent to pq and go-pg for selecting a single column from a single row, but it is substantially faster when selecting multiple entire rows (6893 queries/sec for pgx vs. 3968 queries/sec for pq -- 73% faster).

See this gist for the underlying benchmark results or checkout go_db_bench to run tests for yourself.

database/sql

Import the github.com/jackc/pgx/stdlib package to use pgx as a driver for database/sql. It is possible to retrieve a pgx connection from database/sql on demand. This allows using the database/sql interface in most places, but using pgx directly when more performance or PostgreSQL specific features are needed.

Documentation

pgx includes extensive documentation in the godoc format. It is viewable online at godoc.org.

Testing

pgx supports multiple connection and authentication types. Setting up a test environment that can test all of them can be cumbersome. In particular, Windows cannot test Unix domain socket connections. Because of this pgx will skip tests for connection types that are not configured.

Normal Test Environment

To setup the normal test environment run the following SQL:

create user pgx_md5 password 'secret';
create database pgx_test;

Connect to database pgx_test and run:

create extension hstore;

Next open connection_settings_test.go.example and make a copy without the .example. If your PostgreSQL server is accepting connections on 127.0.0.1, then you are done.

Connection and Authentication Test Environment

Complete the normal test environment setup and also do the following.

Run the following SQL:

create user pgx_none;
create user pgx_pw password 'secret';

Add the following to your pg_hba.conf:

If you are developing on Unix with domain socket connections:

local  pgx_test  pgx_none  trust
local  pgx_test  pgx_pw    password
local  pgx_test  pgx_md5   md5

If you are developing on Windows with TCP connections:

host  pgx_test  pgx_none  127.0.0.1/32 trust
host  pgx_test  pgx_pw    127.0.0.1/32 password
host  pgx_test  pgx_md5   127.0.0.1/32 md5

Version Policy

pgx follows semantic versioning for the documented public API. master branch tracks the latest stable branch (v2). Consider using import "gopkg.in/jackc/pgx.v2" to lock to the v2 branch or use a vendoring tool such as godep.