MCPcopy
hub / github.com/jackc/pgx / Exec

Method Exec

pgxpool/conn.go:85–87  ·  view source on GitHub ↗
(ctx context.Context, sql string, arguments ...any)

Source from the content-addressed store, hash-verified

83}
84
85func (c *Conn) Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) {
86 return c.Conn().Exec(ctx, sql, arguments...)
87}
88
89func (c *Conn) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {
90 return c.Conn().Query(ctx, sql, args...)

Callers

nothing calls this directly

Calls 2

ConnMethod · 0.95
ExecMethod · 0.65

Tested by

no test coverage detected