type database/sql.Row
18 uses
database/sql (current package)
sql.go#L1705: func (db *DB) QueryRowContext(ctx context.Context, query string, args ...interface{}) *Row {
sql.go#L1707: return &Row{rows: rows, err: err}
sql.go#L1716: func (db *DB) QueryRow(query string, args ...interface{}) *Row {
sql.go#L1903: func (c *Conn) QueryRowContext(ctx context.Context, query string, args ...interface{}) *Row {
sql.go#L1905: return &Row{rows: rows, err: err}
sql.go#L2396: func (tx *Tx) QueryRowContext(ctx context.Context, query string, args ...interface{}) *Row {
sql.go#L2398: return &Row{rows: rows, err: err}
sql.go#L2407: func (tx *Tx) QueryRow(query string, args ...interface{}) *Row {
sql.go#L2704: func (s *Stmt) QueryRowContext(ctx context.Context, args ...interface{}) *Row {
sql.go#L2707: return &Row{err: err}
sql.go#L2709: return &Row{rows: rows}
sql.go#L2723: func (s *Stmt) QueryRow(args ...interface{}) *Row {
sql.go#L3195: type Row struct {
sql.go#L3206: func (r *Row) Scan(dest ...interface{}) error {
sql.go#L3249: func (r *Row) Err() error {
github.com/Masterminds/squirrel
squirrel.go#L73: QueryRow(string, ...interface{}) *sql.Row
squirrel_ctx.go#L55: QueryRowContext(context.Context, string, ...interface{}) *sql.Row
golang.org/x/pkgsite/internal/database
database.go#L120: func (db *DB) QueryRow(ctx context.Context, query string, args ...interface{}) *sql.Row {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |