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

Method QueryRow

pgxpool/conn.go:93–95  ·  view source on GitHub ↗
(ctx context.Context, sql string, args ...any)

Source from the content-addressed store, hash-verified

91}
92
93func (c *Conn) QueryRow(ctx context.Context, sql string, args ...any) pgx.Row {
94 return c.Conn().QueryRow(ctx, sql, args...)
95}
96
97func (c *Conn) SendBatch(ctx context.Context, b *pgx.Batch) pgx.BatchResults {
98 return c.Conn().SendBatch(ctx, b)

Callers

nothing calls this directly

Calls 2

ConnMethod · 0.95
QueryRowMethod · 0.65

Tested by

no test coverage detected