cloudflared-mirror/vendor/github.com/lib/pq
Chung-Ting Huang 13bf65ce4e TUN-2506: Expose active streams metrics 2019-11-07 14:09:31 -06:00
..
oid TUN-2506: Expose active streams metrics 2019-11-07 14:09:31 -06:00
scram AUTH-2105: Adds support for local forwarding. Refactor auditlogger creation. 2019-10-10 15:25:03 -05:00
.gitignore TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
.travis.sh TUN-2502: Switch to go modules 2019-11-04 15:05:02 -06:00
.travis.yml AUTH-2105: Adds support for local forwarding. Refactor auditlogger creation. 2019-10-10 15:25:03 -05:00
CONTRIBUTING.md TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
LICENSE.md TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
README.md TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
TESTS.md TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
array.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
buf.go AUTH-2105: Adds support for local forwarding. Refactor auditlogger creation. 2019-10-10 15:25:03 -05:00
conn.go AUTH-2105: Adds support for local forwarding. Refactor auditlogger creation. 2019-10-10 15:25:03 -05:00
conn_go18.go TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
connector.go TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
copy.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
doc.go TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
encode.go AUTH-2105: Adds support for local forwarding. Refactor auditlogger creation. 2019-10-10 15:25:03 -05:00
error.go AUTH-2105: Adds support for local forwarding. Refactor auditlogger creation. 2019-10-10 15:25:03 -05:00
go.mod TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
notify.go TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
rows.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
ssl.go TUN-1734: Pin packages at exact versions 2019-04-17 18:16:56 -05:00
ssl_permissions.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
ssl_windows.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
url.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
user_posix.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
user_windows.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00
uuid.go TUN-801: Rapid SQL Proxy 2018-08-29 17:03:12 -05:00

README.md

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

GoDoc Build Status

Install

go get github.com/lib/pq

Docs

For detailed documentation and basic usage examples, please see the package documentation at https://godoc.org/github.com/lib/pq.

Tests

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

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

Future / Things you can help with

  • Better COPY FROM / COPY TO (see discussion in #181)

Thank you (alphabetical)

Some of these contributors are from the original library bmizerany/pq.go whose code still exists in here.

  • Andy Balholm (andybalholm)
  • Ben Berkert (benburkert)
  • Benjamin Heatwole (bheatwole)
  • Bill Mill (llimllib)
  • Bjørn Madsen (aeons)
  • Blake Gentry (bgentry)
  • Brad Fitzpatrick (bradfitz)
  • Charlie Melbye (cmelbye)
  • Chris Bandy (cbandy)
  • Chris Gilling (cgilling)
  • Chris Walsh (cwds)
  • Dan Sosedoff (sosedoff)
  • Daniel Farina (fdr)
  • Eric Chlebek (echlebek)
  • Eric Garrido (minusnine)
  • Eric Urban (hydrogen18)
  • Everyone at The Go Team
  • Evan Shaw (edsrzf)
  • Ewan Chou (coocood)
  • Fazal Majid (fazalmajid)
  • Federico Romero (federomero)
  • Fumin (fumin)
  • Gary Burd (garyburd)
  • Heroku (heroku)
  • James Pozdena (jpoz)
  • Jason McVetta (jmcvetta)
  • Jeremy Jay (pbnjay)
  • Joakim Sernbrant (serbaut)
  • John Gallagher (jgallagher)
  • Jonathan Rudenberg (titanous)
  • Joël Stemmer (jstemmer)
  • Kamil Kisiel (kisielk)
  • Kelly Dunn (kellydunn)
  • Keith Rarick (kr)
  • Kir Shatrov (kirs)
  • Lann Martin (lann)
  • Maciek Sakrejda (uhoh-itsmaciek)
  • Marc Brinkmann (mbr)
  • Marko Tiikkaja (johto)
  • Matt Newberry (MattNewberry)
  • Matt Robenolt (mattrobenolt)
  • Martin Olsen (martinolsen)
  • Mike Lewis (mikelikespie)
  • Nicolas Patry (Narsil)
  • Oliver Tonnhofer (olt)
  • Patrick Hayes (phayes)
  • Paul Hammond (paulhammond)
  • Ryan Smith (ryandotsmith)
  • Samuel Stauffer (samuel)
  • Timothée Peignier (cyberdelia)
  • Travis Cline (tmc)
  • TruongSinh Tran-Nguyen (truongsinh)
  • Yaismel Miranda (ympons)
  • notedit (notedit)