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

Method Select

sqlx.go:433–435  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

431// Select within a transaction.
432// Any placeholder parameters are replaced with supplied args.
433func (tx *Tx) Select(dest interface{}, query string, args ...interface{}) error {
434 return Select(tx, dest, query, args...)
435}
436
437// Queryx within a transaction.
438// Any placeholder parameters are replaced with supplied args.

Callers

nothing calls this directly

Calls 1

SelectFunction · 0.85

Tested by

no test coverage detected