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

Method Select

sqlx.go:518–520  ·  view source on GitHub ↗

Select using the prepared statement. Any placeholder parameters are replaced with supplied args.

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

Source from the content-addressed store, hash-verified

516// Select using the prepared statement.
517// Any placeholder parameters are replaced with supplied args.
518func (s *Stmt) Select(dest interface{}, args ...interface{}) error {
519 return Select(&qStmt{s}, dest, "", args...)
520}
521
522// Get using the prepared statement.
523// Any placeholder parameters are replaced with supplied args.

Callers

nothing calls this directly

Calls 1

SelectFunction · 0.85

Tested by

no test coverage detected