type database/sql.Row

15 uses

	database/sql (current package)
		sql.go#L1814: func (db *DB) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
		sql.go#L1816: 	return &Row{rows: rows, err: err}
		sql.go#L1828: func (db *DB) QueryRow(query string, args ...any) *Row {
		sql.go#L2022: func (c *Conn) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
		sql.go#L2024: 	return &Row{rows: rows, err: err}
		sql.go#L2527: func (tx *Tx) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
		sql.go#L2529: 	return &Row{rows: rows, err: err}
		sql.go#L2541: func (tx *Tx) QueryRow(query string, args ...any) *Row {
		sql.go#L2844: func (s *Stmt) QueryRowContext(ctx context.Context, args ...any) *Row {
		sql.go#L2847: 		return &Row{err: err}
		sql.go#L2849: 	return &Row{rows: rows}
		sql.go#L2866: func (s *Stmt) QueryRow(args ...any) *Row {
		sql.go#L3338: type Row struct {
		sql.go#L3349: func (r *Row) Scan(dest ...any) error {
		sql.go#L3392: func (r *Row) Err() error {