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

Struct qStmt

sqlx.go:552–552  ·  view source on GitHub ↗

qStmt is an unexposed wrapper which lets you use a Stmt as a Queryer & Execer by implementing those interfaces and ignoring the `query` argument.

Source from the content-addressed store, hash-verified

550// qStmt is an unexposed wrapper which lets you use a Stmt as a Queryer & Execer by
551// implementing those interfaces and ignoring the `query` argument.
552type qStmt struct{ *Stmt }
553
554func (q *qStmt) Query(query string, args ...interface{}) (*sql.Rows, error) {
555 return q.Stmt.Query(args...)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected