You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6543 86e2789960
Vendor Update (#16121)
* update github.com/PuerkitoBio/goquery

* update github.com/alecthomas/chroma

* update github.com/blevesearch/bleve/v2

* update github.com/caddyserver/certmagic

* update github.com/go-enry/go-enry/v2

* update github.com/go-git/go-billy/v5

* update github.com/go-git/go-git/v5

* update github.com/go-redis/redis/v8

* update github.com/go-testfixtures/testfixtures/v3

* update github.com/jaytaylor/html2text

* update github.com/json-iterator/go

* update github.com/klauspost/compress

* update github.com/markbates/goth

* update github.com/mattn/go-isatty

* update github.com/mholt/archiver/v3

* update github.com/microcosm-cc/bluemonday

* update github.com/minio/minio-go/v7

* update github.com/prometheus/client_golang

* update github.com/unrolled/render

* update github.com/xanzy/go-gitlab

* update github.com/yuin/goldmark

* update github.com/yuin/goldmark-highlighting

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
3 years ago
..
oid
scram
.gitignore Vendor Update (#14496) 3 years ago
.travis.sh Vendor Update (#16121) 3 years ago
.travis.yml Vendor Update (#16121) 3 years ago
LICENSE.md
README.md
TESTS.md
array.go [Vendor] Update directly used dependencys (#15593) 3 years ago
buf.go
conn.go [Vendor] Update directly used dependencys (#15593) 3 years ago
conn_go18.go [Vendor] Update directly used dependencys (#15593) 3 years ago
connector.go
copy.go Vendor Update (#14496) 3 years ago
doc.go
encode.go Vendor Update (#16121) 3 years ago
error.go Vendor Update (#14496) 3 years ago
go.mod
krb.go
notice.go
notify.go
rows.go
ssl.go [Vendor] Update directly used dependencys (#15593) 3 years ago
ssl_permissions.go
ssl_windows.go
url.go [Vendor] Update directly used dependencys (#15593) 3 years ago
user_other.go Vendor Update (#16121) 3 years ago
user_posix.go
user_windows.go
uuid.go

README.md

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.