QueryRowxContext this NamedStmt. Because of limitations with QueryRow, this is an alias for QueryRow. Any named placeholder parameters are replaced with fields from arg.
(ctx context.Context, arg interface{})
| 88 | // an alias for QueryRow. |
| 89 | // Any named placeholder parameters are replaced with fields from arg. |
| 90 | func (n *NamedStmt) QueryRowxContext(ctx context.Context, arg interface{}) *Row { |
| 91 | return n.QueryRowContext(ctx, arg) |
| 92 | } |
| 93 | |
| 94 | // SelectContext using this NamedStmt |
| 95 | // Any named placeholder parameters are replaced with fields from arg. |
no test coverage detected