github.com/jackc/pgx/v5/pgconn.PgConn.Exec (method)
11 uses
github.com/jackc/pgx/v5/pgconn (current package)
config.go#L1007: result, err := pgConn.Exec(ctx, "show transaction_read_only").ReadAll()
config.go#L1022: result, err := pgConn.Exec(ctx, "show transaction_read_only").ReadAll()
config.go#L1037: result, err := pgConn.Exec(ctx, "select pg_is_in_recovery()").ReadAll()
config.go#L1052: result, err := pgConn.Exec(ctx, "select pg_is_in_recovery()").ReadAll()
config.go#L1067: result, err := pgConn.Exec(ctx, "select pg_is_in_recovery()").ReadAll()
pgconn.go#L1197: func (pgConn *PgConn) Exec(ctx context.Context, sql string) *MultiResultReader {
pgconn.go#L2097: return pgConn.Exec(ctx, "-- ping").Close()
github.com/jackc/pgx/v5
conn.go#L405: _, err := c.pgConn.Exec(ctx, "deallocate all").ReadAll()
conn.go#L588: mrr := c.pgConn.Exec(ctx, sql)
conn.go#L865: mrr := c.pgConn.Exec(ctx, sql)
conn.go#L1029: mrr := c.pgConn.Exec(ctx, sb.String())