github.com/jackc/pgx/v5.Conn.QueryRow (method, view implemented interface methods)

8 uses

	github.com/jackc/pgx/v5 (current package)
		conn.go#L930: func (c *Conn) QueryRow(ctx context.Context, sql string, args ...any) Row {
		conn.go#L1292: 	err := c.QueryRow(ctx, "select $1::text::regtype::oid;", typeName).Scan(&oid)
		conn.go#L1300: 	err = c.QueryRow(ctx, "select typtype::text, typbasetype from pg_type where oid=$1", oid).Scan(&typtype, &typbasetype)
		conn.go#L1366: 	err := c.QueryRow(ctx, "select typelem from pg_type where oid=$1", oid).Scan(&typelem)
		conn.go#L1377: 	err := c.QueryRow(ctx, "select rngsubtype from pg_range where rngtypid=$1", oid).Scan(&typelem)
		conn.go#L1388: 	err := c.QueryRow(ctx, "select rngtypid from pg_range where rngmultitypid=$1", oid).Scan(&typelem)
		conn.go#L1399: 	err := c.QueryRow(ctx, "select typrelid from pg_type where oid=$1", oid).Scan(&typrelid)

	github.com/jackc/pgx/v5/pgxpool
		conn.go#L95: 	return c.Conn().QueryRow(ctx, sql, args...)