k3s/vendor/github.com/lib/pq
Brad Davidson 7a5a9033a7 Update kine to v0.5.0
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2020-10-28 13:03:47 -07:00
..
oid go mod vendor 2019-11-15 21:52:07 -07:00
scram Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
.gitignore Vendor Update 2019-05-16 01:05:32 +02:00
.travis.sh Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
.travis.yml Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
array.go Vendor Update 2019-05-16 01:05:32 +02:00
buf.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
conn_go18.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
conn.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
connector.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
copy.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
doc.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
encode.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
error.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
go.mod Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
krb.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
LICENSE.md Vendor Update 2019-05-16 01:05:32 +02:00
notice.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
notify.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
README.md Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
rows.go Vendor Update 2019-05-16 01:05:32 +02:00
ssl_permissions.go Vendor Update 2019-05-16 01:05:32 +02:00
ssl_windows.go Vendor Update 2019-05-16 01:05:32 +02:00
ssl.go Vendor Update 2019-05-16 01:05:32 +02:00
TESTS.md Vendor Update 2019-05-16 01:05:32 +02:00
url.go Vendor Update 2019-05-16 01:05:32 +02:00
user_posix.go Update kine to v0.5.0 2020-10-28 13:03:47 -07:00
user_windows.go Vendor Update 2019-05-16 01:05:32 +02:00
uuid.go Vendor Update 2019-05-16 01:05:32 +02:00

pq - A pure Go postgres driver for Go's database/sql package

GoDoc

Install

go get github.com/lib/pq

Features

  • SSL
  • Handles bad connections for database/sql
  • Scan time.Time correctly (i.e. timestamp[tz], time[tz], date)
  • Scan binary blobs correctly (i.e. bytea)
  • Package for hstore support
  • COPY FROM support
  • pq.ParseURL for converting urls to connection strings for sql.Open.
  • Many libpq compatible environment variables
  • Unix socket support
  • Notifications: LISTEN/NOTIFY
  • pgpass support
  • GSS (Kerberos) auth

Tests

go test is used for testing. See TESTS.md for more details.

Status

This package is effectively in maintenance mode and is not actively developed. Small patches and features are only rarely reviewed and merged. We recommend using pgx which is actively maintained.