(ctx context.Context, query string, args ...interface{})
| 65 | } |
| 66 | |
| 67 | func (r *stdsqlCtxRunner) QueryRowContext(ctx context.Context, query string, args ...interface{}) RowScanner { |
| 68 | return r.StdSqlCtx.QueryRowContext(ctx, query, args...) |
| 69 | } |
| 70 | |
| 71 | // ExecContextWith ExecContexts the SQL returned by s with db. |
| 72 | func ExecContextWith(ctx context.Context, db ExecerContext, s Sqlizer) (res sql.Result, err error) { |
nothing calls this directly
no test coverage detected