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

Method Query

sqlx.go:554–556  ·  sqlx.go::qStmt.Query
(query string, args ...interface{})

Source from the content-addressed store, hash-verified

552type qStmt struct{ *Stmt }
553
554func (q *qStmt) Query(query string, args ...interface{}) (*sql.Rows, error) {
555 return q.Stmt.Query(args...)
556}
557
558func (q *qStmt) Queryx(query string, args ...interface{}) (*Rows, error) {
559 r, err := q.Stmt.Query(args...)

Callers

nothing calls this directly

Calls 1

QueryMethod · 0.65

Tested by

no test coverage detected