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

Method QueryRowx

sqlx.go:566–569  ·  view source on GitHub ↗
(query string, args ...interface{})

Source from the content-addressed store, hash-verified

564}
565
566func (q *qStmt) QueryRowx(query string, args ...interface{}) *Row {
567 rows, err := q.Stmt.Query(args...)
568 return &Row{rows: rows, err: err, unsafe: q.Stmt.unsafe, Mapper: q.Stmt.Mapper}
569}
570
571func (q *qStmt) Exec(query string, args ...interface{}) (sql.Result, error) {
572 return q.Stmt.Exec(args...)

Callers 1

QueryRowxMethod · 0.95

Calls 1

QueryMethod · 0.65

Tested by

no test coverage detected