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

Method QueryRowx

named.go:95–97  ·  view source on GitHub ↗

QueryRowx this NamedStmt. Because of limitations with QueryRow, this is an alias for QueryRow. Any named placeholder parameters are replaced with fields from arg.

(arg interface{})

Source from the content-addressed store, hash-verified

93// an alias for QueryRow.
94// Any named placeholder parameters are replaced with fields from arg.
95func (n *NamedStmt) QueryRowx(arg interface{}) *Row {
96 return n.QueryRow(arg)
97}
98
99// Select using this NamedStmt
100// Any named placeholder parameters are replaced with fields from arg.

Callers 1

GetMethod · 0.95

Calls 1

QueryRowMethod · 0.95

Tested by

no test coverage detected