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{})
| 93 | // an alias for QueryRow. |
| 94 | // Any named placeholder parameters are replaced with fields from arg. |
| 95 | func (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. |