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

Method QueryRowx

sqlx.go:538–541  ·  view source on GitHub ↗

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

(args ...interface{})

Source from the content-addressed store, hash-verified

536// QueryRowx using this statement.
537// Any placeholder parameters are replaced with supplied args.
538func (s *Stmt) QueryRowx(args ...interface{}) *Row {
539 qs := &qStmt{s}
540 return qs.QueryRowx("", args...)
541}
542
543// Queryx using this statement.
544// Any placeholder parameters are replaced with supplied args.

Callers

nothing calls this directly

Calls 1

QueryRowxMethod · 0.95

Tested by

no test coverage detected