github.com/jackc/pgx/v5
go
pkg:golang/github.com/jackc/pgx/v5
1,011 Dependabot PRs
about 24 hours ago
503 repositories
274 repositories
Security Advisories
Panic in Pipeline when PgConn is busy or closed in github.com/jackc/pgx
pgx SQL Injection via Protocol Message Size Overflow
Recent PRs
chore(deps): bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4 in /backend



mod: bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
flamego/session #157

Bump the all-deps group with 10 updates
google/certificate-transparency-go #1731

Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
kataras/pg #6

Bump the go group with 102 updates
soitun/teleport #710

Bump the dependencies group across 1 directory with 5 updates
jlucaspains/go-rest-template #112


Bump the gomod group across 1 directory with 3 updates
taiidani/middara #13

Bump the go group with 99 updates
gravitational/teleport #59813

Bump the go group across 1 directory with 102 updates

build(deps): Bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.6

Bump the go-packages group with 16 updates
kokizzu/centrifugo #374

Bump the go-packages group with 15 updates
centrifugal/centrifugo #1048

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
olexsmir/onasty #219

Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.6
ibiscum/Go-Recipes-for-Developers #22

build(deps): Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
tab/biinge-api #23


Bump the go-deps group across 1 directory with 25 updates
bobcallaway/trillian #337

chore(deps): bump the dependencies group in /postgresql with 4 updates
Scalingo/go-utils #1349

build(deps): Bump the go-dependencies group across 1 directory with 6 updates

Bump the go-dependencies group across 1 directory with 58 updates
radius-project/radius #10559

chore(deps): bump the go-modules group across 1 directory with 45 updates
flanksource/canary-checker #2679

Bump the go group across 1 directory with 101 updates

Bump the go group across 1 directory with 100 updates
sigtrap/teleport #3383

Bump the go-dependencies group across 1 directory with 58 updates

build(deps): bump github.com/jackc/pgx/v5 from 5.4.3 to 5.5.4

chore(deps): bump the go-modules group across 1 directory with 51 updates
flanksource/canary-checker #2678

build(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6

Bump the go-dependencies group across 1 directory with 57 updates
radius-project/radius #10539

[gomod] bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6 in /kryptos
skulpturenz/shared-resources #704

deps(deps): bump the go-minor group across 1 directory with 14 updates
duesk-inc/monstera #124

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.6

Bump the go-dependencies group across 1 directory with 56 updates
radius-project/radius #10523

Bump the go group across 1 directory with 98 updates
soitun/teleport #688

Bump the go group across 1 directory with 98 updates
Tiamat-Tech/teleport #876

Bump the go group across 1 directory with 98 updates

Bump the go group across 1 directory with 98 updates
sigtrap/teleport #3373

fix(deps): bump the external group across 1 directory with 29 updates
opentdf/platform #2765

Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
spiffe/spire #6337



Bump github.com/jackc/pgx/v5 from 5.5.4 to 5.7.6 in /backend
TheMinecraftGuyGuru/vidfriends #28

Bump the go group across 1 directory with 96 updates
sigtrap/teleport #3368

[dep][go](deps): Bump github.com/jackc/pgx/v5 from 5.7.3 to 5.7.6
turbot/steampipe #4660

Bump the go group across 1 directory with 96 updates
soitun/teleport #682

Bump the ferretdb group across 1 directory with 6 updates
mikeyhodl/MangoDB #261

Bump the go group across 1 directory with 96 updates

Package Details
Name: | github.com/jackc/pgx/v5 |
Ecosystem: | go |
PURL Type: | golang |
Package URL: | pkg:golang/github.com/jackc/pgx/v5 |
JSON API: | View JSON |
Security Advisories
Package Information
Package pgx is a PostgreSQL database driver. pgx provides a native PostgreSQL driver and can act as a database/sql driver. The native PostgreSQL interface is similar to the database/sql interface while providing better speed and access to PostgreSQL specific features. Use github.com/jackc/pgx/v5/stdlib to use pgx as a database/sql compatible driver. See that package's documentation for details. The primary way of establishing a connection is with pgx.Connect: The database connection string can be in URL or key/value format. Both PostgreSQL settings and pgx settings can be specified here. In addition, a config struct can be created by ParseConfig and modified before establishing the connection with ConnectConfig to configure settings such as tracing that cannot be configured with a connection string. *pgx.Conn represents a single connection to the database and is not concurrency safe. Use package github.com/jackc/pgx/v5/pgxpool for a concurrency safe connection pool. pgx implements Query in the familiar database/sql style. However, pgx provides generic functions such as CollectRows and ForEachRow that are a simpler and safer way of processing rows than manually calling defer rows.Close(), rows.Next(), rows.Scan, and rows.Err(). CollectRows can be used collect all returned rows into a slice. ForEachRow can be used to execute a callback function for every row. This is often easier than iterating over rows directly. pgx also implements QueryRow in the same style as database/sql. Use Exec to execute a query that does not return a result set. pgx uses the pgtype package to converting Go values to and from PostgreSQL values. It supports many PostgreSQL types directly and is customizable and extendable. User defined data types such as enums, domains, and composite types may require type registration. See that package's documentation for details. Transactions are started by calling Begin. The Tx returned from Begin also implements the Begin method. This can be used to implement pseudo nested transactions. These are internally implemented with savepoints. Use BeginTx to control the transaction mode. BeginTx also can be used to ensure a new transaction is created instead of a pseudo nested transaction. BeginFunc and BeginTxFunc are functions that begin a transaction, execute a function, and commit or rollback the transaction depending on the return value of the function. These can be simpler and less error prone to use. Prepared statements can be manually created with the Prepare method. However, this is rarely necessary because pgx includes an automatic statement cache by default. Queries run through the normal Query, QueryRow, and Exec functions are automatically prepared on first execution and the prepared statement is reused on subsequent executions. See ParseConfig for information on how to customize or disable the statement cache. Use CopyFrom to efficiently insert multiple rows at a time using the PostgreSQL copy protocol. CopyFrom accepts a CopyFromSource interface. If the data is already in a [][]any use CopyFromRows to wrap it in a CopyFromSource interface. Or implement CopyFromSource to avoid buffering the entire data set in memory. When you already have a typed array using CopyFromSlice can be more convenient. CopyFrom can be faster than an insert with as few as 5 rows. pgx can listen to the PostgreSQL notification system with the `Conn.WaitForNotification` method. It blocks until a notification is received or the context is canceled. pgx supports tracing by setting ConnConfig.Tracer. To combine several tracers you can use the multitracer.Tracer. In addition, the tracelog package provides the TraceLog type which lets a traditional logger act as a Tracer. For debug tracing of the actual PostgreSQL wire protocol messages see github.com/jackc/pgx/v5/pgproto3. github.com/jackc/pgx/v5/pgconn contains a lower level PostgreSQL driver roughly at the level of libpq. pgx.Conn is implemented on top of pgconn. The Conn.PgConn() method can be used to access this lower layer. By default pgx automatically uses prepared statements. Prepared statements are incompatible with PgBouncer. This can be disabled by setting a different QueryExecMode in ConnConfig.DefaultQueryExecMode.
Repository: | https://github.com/jackc/pgx |
Homepage: | https://github.com/jackc/pgx |
Latest Release: |
v5.7.5
5 months ago |
Dependent Repos: | 4,965 |
Dependent Packages: | 3,079 |
Ranking: | Top 0.1177% by dependent repos Top 0.1141% by dependent pkgs |