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

8 uses

	github.com/jackc/pgx/v5 (current package)
		conn.go#L931: func (c *Conn) QueryRow(ctx context.Context, sql string, args ...any) Row {
		conn.go#L1293: 	err := c.QueryRow(ctx, "select $1::text::regtype::oid;", typeName).Scan(&oid)
		conn.go#L1301: 	err = c.QueryRow(ctx, "select typtype::text, typbasetype from pg_type where oid=$1", oid).Scan(&typtype, &typbasetype)
		conn.go#L1367: 	err := c.QueryRow(ctx, "select typelem from pg_type where oid=$1", oid).Scan(&typelem)
		conn.go#L1378: 	err := c.QueryRow(ctx, "select rngsubtype from pg_range where rngtypid=$1", oid).Scan(&typelem)
		conn.go#L1389: 	err := c.QueryRow(ctx, "select rngtypid from pg_range where rngmultitypid=$1", oid).Scan(&typelem)
		conn.go#L1400: 	err := c.QueryRow(ctx, "select typrelid from pg_type where oid=$1", oid).Scan(&typrelid)

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