MCPcopy
hub / github.com/jmoiron/sqlx / QueryRowx

Method QueryRowx

sqlx.go:449–452  ·  sqlx.go::Tx.QueryRowx

QueryRowx within a transaction. Any placeholder parameters are replaced with supplied args.

(query string, args ...interface{})

Source from the content-addressed store, hash-verified

447// QueryRowx within a transaction.
448// Any placeholder parameters are replaced with supplied args.
449func (tx *Tx) QueryRowx(query string, args ...interface{}) *Row {
450 rows, err := tx.Tx.Query(query, args...)
451 return &Row{rows: rows, err: err, unsafe: tx.unsafe, Mapper: tx.Mapper}
452}
453
454// Get within a transaction.
455// Any placeholder parameters are replaced with supplied args.

Callers

nothing calls this directly

Calls 1

QueryMethod · 0.65

Tested by

no test coverage detected