SelectContext within a transaction and context. Any placeholder parameters are replaced with supplied args.
(ctx context.Context, dest interface{}, query string, args ...interface{})
| 336 | // SelectContext within a transaction and context. |
| 337 | // Any placeholder parameters are replaced with supplied args. |
| 338 | func (tx *Tx) SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error { |
| 339 | return SelectContext(ctx, tx, dest, query, args...) |
| 340 | } |
| 341 | |
| 342 | // GetContext within a transaction and context. |
| 343 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected