SelectContext using the prepared statement. Any placeholder parameters are replaced with supplied args.
(ctx context.Context, dest interface{}, args ...interface{})
| 362 | // SelectContext using the prepared statement. |
| 363 | // Any placeholder parameters are replaced with supplied args. |
| 364 | func (s *Stmt) SelectContext(ctx context.Context, dest interface{}, args ...interface{}) error { |
| 365 | return SelectContext(ctx, &qStmt{s}, dest, "", args...) |
| 366 | } |
| 367 | |
| 368 | // GetContext using the prepared statement. |
| 369 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected