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

Method Queryx

sqlx.go:545–548  ·  view source on GitHub ↗

Queryx using this statement. Any placeholder parameters are replaced with supplied args.

(args ...interface{})

Source from the content-addressed store, hash-verified

543// Queryx using this statement.
544// Any placeholder parameters are replaced with supplied args.
545func (s *Stmt) Queryx(args ...interface{}) (*Rows, error) {
546 qs := &qStmt{s}
547 return qs.Queryx("", args...)
548}
549
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.

Callers

nothing calls this directly

Calls 1

QueryxMethod · 0.95

Tested by

no test coverage detected