github.com/jackc/pgx/v5
go
pkg:golang/github.com/jackc/pgx/v5
1,013 Dependabot PRs
about 15 hours ago
504 repositories
276 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 (filtered by: Closed , Patch PRs )
Bump the go group with 102 updates
soitun/teleport #710

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



build(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
RedHatInsights/sources-api-go #1014

upgrade: Bump the go-dependencies group across 1 directory with 8 updates
cccteam/session #116

build(deps): bump the dependencies group across 1 directory with 23 updates

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

Bump the go group across 1 directory with 75 updates
Tiamat-Tech/teleport #827

Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
ai-code-review-benchmarks/graphite-grafana #14

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
go-gorm/postgres #327


chore(deps): bump the security group across 1 directory with 11 updates
replicatedhq/troubleshoot #1838

Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.6
zeromicro/go-zero #5161

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

build(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6 in /src/go
ilyam8/netdata #200

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

Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
OpenSlides/openslides-vote-service #383

chore(deps): bump the go-dependencies group across 1 directory with 13 updates
Lumina-Enterprise-Solutions/prism-auth-service #22

build(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
kannon-email/kannon #272

Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6

Bump the dependencies group across 14 directories with 16 updates

chore(deps): bump the dependencies group across 1 directory with 35 updates

dev: bump the safe group with 48 updates
halter-corp/lorawan-stack #264

Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.5
lyanming42/todo-api-microservice-example #51

build(deps): bump the go_modules group across 1 directory with 5 updates
H1d3r/headscale #240

Bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5 in /server

Bump the production-dependencies group across 1 directory with 6 updates
swesmith/sqlc-dev__sqlc.b34aa372 #4

dev: bump the safe group across 1 directory with 34 updates
TheThingsNetwork/lorawan-stack #7649

Bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5 in /reader

Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.5 in /writer

dev: bump the safe group across 1 directory with 33 updates
TheThingsNetwork/lorawan-stack #7647

build(deps): Bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5
tab/loki #54

Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.5
jlucaspains/go-rest-template #103

build(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5
sot-tech/mochi #142

Bump the go group with 74 updates
sigtrap/teleport #2980

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

Bump the go-modules-updates group across 1 directory with 5 updates

Bump the dependencies group across 1 directory with 45 updates
referendumApp/referendumServices #275

dev: bump the safe group across 1 directory with 29 updates
TheThingsNetwork/lorawan-stack #7633

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5
zeromicro/go-zero #4901

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

Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.5

build(deps): bump the go-deps group with 2 updates
target/goalert #4361

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.1 to 5.7.5 in /maas-service

[gomod] Bump the dependencies group across 4 directories with 16 updates
open-edge-platform/infra-core #164

[gomod] Bump the dependencies group across 4 directories with 13 updates
open-edge-platform/infra-core #158

build(deps): bump the production-dependencies group across 1 directory with 4 updates
sqlc-dev/sqlc #3972

chore(deps): bump the all group across 4 directories with 22 updates
formancehq/ledger #944

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 |