1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-18 20:59:43 +02:00
documize/vendor/github.com/lib/pq
2024-01-10 14:47:40 -05:00
..
oid Moved from Dep to Go Modules 2019-09-06 11:06:28 +01:00
scram Database and LDAP upgrades 2020-05-21 12:32:46 +01:00
.gitignore Sync with Community 2021-08-19 13:02:56 -04:00
array.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
buf.go Bumped database driver dependencies 2019-08-15 14:51:40 +01:00
conn.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
conn_go18.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
conn_go115.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
connector.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
copy.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
doc.go Sync with Community 2021-08-19 13:02:56 -04:00
encode.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
error.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
krb.go Sync with Community 2021-08-19 13:02:56 -04:00
LICENSE.md PostgreSQL prep 2018-09-26 17:59:56 +01:00
notice.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
notify.go Database and LDAP upgrades 2020-05-21 12:32:46 +01:00
README.md Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
rows.go PostgreSQL prep 2018-09-26 17:59:56 +01:00
ssl.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
ssl_permissions.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
ssl_windows.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
TESTS.md PostgreSQL prep 2018-09-26 17:59:56 +01:00
url.go Sync with Community 2021-08-19 13:02:56 -04:00
user_other.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
user_posix.go Bump version to 5.11.0 2024-01-10 14:47:40 -05:00
user_windows.go PostgreSQL prep 2018-09-26 17:59:56 +01:00
uuid.go PostgreSQL prep 2018-09-26 17:59:56 +01: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 currently in maintenance mode, which means:

  1. It generally does not accept new features.
  2. It does accept bug fixes and version compatability changes provided by the community.
  3. Maintainers usually do not resolve reported issues.
  4. Community members are encouraged to help each other with reported issues.

For users that require new features or reliable resolution of reported bugs, we recommend using pgx which is under active development.