Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Migrate | 12,321 | 815 | 5 days ago | 132 | June 11, 2023 | 297 | other | Go | ||
Database migrations. CLI and Golang library. | ||||||||||
Pq | 8,242 | 6,115 | 11,010 | a month ago | 49 | April 26, 2023 | 301 | mit | Go | |
Pure Go Postgres driver for database/sql | ||||||||||
Usql | 8,238 | 2 | 13 | 2 days ago | 152 | July 18, 2023 | 68 | mit | Go | |
Universal command-line interface for SQL databases | ||||||||||
Yugabyte Db | 8,103 | a day ago | 5,362 | other | C | |||||
YugabyteDB - the cloud native distributed SQL database for mission-critical applications. | ||||||||||
Pgx | 7,799 | 3,333 | 4 days ago | 114 | February 28, 2023 | 127 | mit | Go | ||
PostgreSQL driver and toolkit for Go | ||||||||||
Postgres | 4,966 | 3 | 165 | 12 days ago | 38 | May 31, 2023 | 50 | unlicense | JavaScript | |
Postgres.js - The Fastest full featured PostgreSQL client for Node.js and Deno | ||||||||||
Psycopg2 | 3,038 | 6,031 | 1,893 | a day ago | 21 | August 05, 2023 | 19 | other | C | |
PostgreSQL database adapter for the Python programming language | ||||||||||
Sqler | 1,918 | 2 years ago | 2 | July 12, 2021 | apache-2.0 | Go | ||||
write APIs using direct SQL queries with no hassle, let's rethink about SQL | ||||||||||
Pgjdbc | 1,318 | 26,004 | 2,244 | 2 days ago | 178 | March 17, 2023 | 453 | bsd-2-clause | Java | |
Postgresql JDBC Driver | ||||||||||
Vscode Sqltools | 1,281 | 1 | 61 | 2 months ago | 13 | October 16, 2022 | 191 | mit | TypeScript | |
Database management for VSCode |
pgx is a pure Go driver and toolkit for PostgreSQL.
The pgx driver is a low-level, high performance interface that exposes PostgreSQL-specific features such as LISTEN
/
NOTIFY
and COPY
. It also includes an adapter for the standard database/sql
interface.
The toolkit component is a related set of packages that implement PostgreSQL functionality such as parsing the wire protocol and type mapping between PostgreSQL and Go. These underlying packages can be used to implement alternative drivers, proxies, load balancers, logical replication clients, etc.
package main
import (
"context"
"fmt"
"os"
"github.com/jackc/pgx/v5"
)
func main() {
// urlExample := "postgres://username:password@localhost:5432/database_name"
conn, err := pgx.Connect(context.Background(), os.Getenv("DATABASE_URL"))
if err != nil {
fmt.Fprintf(os.Stderr, "Unable to connect to database: %v\n", err)
os.Exit(1)
}
defer conn.Close(context.Background())
var name string
var weight int64
err = conn.QueryRow(context.Background(), "select name, weight from widgets where id=$1", 42).Scan(&name, &weight)
if err != nil {
fmt.Fprintf(os.Stderr, "QueryRow failed: %v\n", err)
os.Exit(1)
}
fmt.Println(name, weight)
}
See the getting started guide for more information.
COPY
protocol support for faster bulk data loadsLISTEN
/ NOTIFY
hstore
supportjson
and jsonb
supportinet
and cidr
PostgreSQL types to netip.Addr
and netip.Prefix
database/sql.Scanner
and database/sql/driver.Valuer
interfaces for custom typesThe pgx interface is faster. Many PostgreSQL specific features such as LISTEN
/ NOTIFY
and COPY
are not available
through the database/sql
interface.
The pgx interface is recommended when:
database/sql
are in use.It is also possible to use the database/sql
interface and convert a connection to the lower-level pgx interface as needed.
See CONTRIBUTING.md for setup instructions.
pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For Go that is the two most recent major releases and for PostgreSQL the major releases in the last 5 years. This means pgx supports Go 1.19 and higher and PostgreSQL 11 and higher. pgx also is tested against the latest version of CockroachDB.
pgx follows semantic versioning for the documented public API on stable releases. v5
is the latest stable major version.
pglogrepl provides functionality to act as a client for PostgreSQL logical replication.
pgmock offers the ability to create a server that mocks the PostgreSQL wire protocol. This is used internally to test pgx by purposely inducing unusual errors. pgproto3 and pgmock together provide most of the foundational tooling required to implement a PostgreSQL proxy or MitM (such as for a custom connection pooler).
tern is a stand-alone SQL migration system.
pgerrcode contains constants for the PostgreSQL error codes.
These adapters can be used with the tracelog package.
pgxmock is a mock library implementing pgx interfaces. pgxmock has one and only purpose - to simulate pgx behavior in tests, without needing a real database connection.
Library for scanning data from a database into Go structs and more.
A carefully designed SQL client for making using SQL easier, more productive, and less error-prone on Golang.
Adds GSSAPI / Kerberos authentication support.
Explicit data mapping and scanning library for Go structs and slices.
Type safe and flexible package for scanning database data into Go types. Supports, structs, maps, slices and custom mapping functions.
Code first migration library for native pgx (no database/sql abstraction).