GetContext within a transaction and context. Any placeholder parameters are replaced with supplied args. An error is returned if the result set is empty.
(ctx context.Context, dest interface{}, query string, args ...interface{})
| 343 | // Any placeholder parameters are replaced with supplied args. |
| 344 | // An error is returned if the result set is empty. |
| 345 | func (tx *Tx) GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error { |
| 346 | return GetContext(ctx, tx, dest, query, args...) |
| 347 | } |
| 348 | |
| 349 | // QueryRowxContext within a transaction and context. |
| 350 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected