github.com/jackc/pgx/v5
go
pkg:golang/github.com/jackc/pgx/v5
1,033 Dependabot PRs
1 day ago
514 repositories
16 repositories
Security Advisories
pgx SQL Injection via Protocol Message Size Overflow
Panic in Pipeline when PgConn is busy or closed in github.com/jackc/pgx
Recent PRs
[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.1 to 5.5.4
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
chore(deps): Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
dev: bump the safe group across 1 directory with 38 updates
TheThingsNetwork/lorawan-stack #7721
chore(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 /go
Bump the go-dependencies group across 1 directory with 53 updates
chore(deps): bump the go-dependencies group across 1 directory with 14 updates
Lumina-Enterprise-Solutions/prism-auth-service #23
chore(deps): bump the go-dependencies group across 1 directory with 11 updates
Lumina-Enterprise-Solutions/prism-common-libs #38
Bump the go-deps group across 1 directory with 3 updates
chore(deps): bump the minor-patch group across 1 directory with 7 updates
chore(deps): bump the dependencies group across 1 directory with 34 updates
build(deps): bump the dependencies group across 1 directory with 24 updates
chore(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.6 in the gomod-minor-patch group
Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.6
lyanming42/todo-api-microservice-example #68
chore(deps): bump github.com/jackc/pgx/v5 from 5.2.0 to 5.5.4
deps(deps): bump the go-minor group across 1 directory with 13 updates
duesk-inc/monstera #119
Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
otakakot/sample-go-github-actions #116
Bump the go-dependencies group across 1 directory with 52 updates
radius-project/radius #10445
security(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.7.6
andrei-polukhin/pgdbtemplate-pgx #3
chore(deps): bump github.com/jackc/pgx/v5 from 5.5.3 to 5.7.6
msfidelis/msc-transactions-api #8
chore(deps): bump the go-minor-patch group in /broker with 4 updates
indexdata/crosslink #318
chore: bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
panachainy/template-golang #52
chore(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
seaweedfs/seaweedfs #7238
Bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
open-bill-stack/api-subscription-service #16
build(deps): bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.6
rustic-beans/spotify-viewer #264
chore(deps): bump the go-dependencies group across 1 directory with 9 updates
Lumina-Enterprise-Solutions/prism-common-libs #37
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
tknie/services #64
go(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
chore(deps): bump the minor-patch group across 1 directory with 6 updates
chore(go): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6
vgarvardt/gue #352
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
6 months ago |
| Dependent Repos: | 4,965 |
| Dependent Packages: | 3,079 |
| Ranking: | Top 0.1177% by dependent repos Top 0.1141% by dependent pkgs |