type database/sql.Row
15 uses
database/sql (current package)
sql.go#L1841: func (db *DB) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
sql.go#L1843: return &Row{rows: rows, err: err}
sql.go#L1855: func (db *DB) QueryRow(query string, args ...any) *Row {
sql.go#L2046: func (c *Conn) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
sql.go#L2048: return &Row{rows: rows, err: err}
sql.go#L2552: func (tx *Tx) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
sql.go#L2554: return &Row{rows: rows, err: err}
sql.go#L2566: func (tx *Tx) QueryRow(query string, args ...any) *Row {
sql.go#L2857: func (s *Stmt) QueryRowContext(ctx context.Context, args ...any) *Row {
sql.go#L2860: return &Row{err: err}
sql.go#L2862: return &Row{rows: rows}
sql.go#L2879: func (s *Stmt) QueryRow(args ...any) *Row {
sql.go#L3475: type Row struct {
sql.go#L3486: func (r *Row) Scan(dest ...any) error {
sql.go#L3527: func (r *Row) Err() error {