(ctx context.Context, query string, args ...any)
| 36 | } |
| 37 | |
| 38 | func (e *LocalExecutor) QueryContext(ctx context.Context, query string, args ...any) (RowSet, error) { |
| 39 | rows, err := e.db.QueryContext(ctx, query, args...) |
| 40 | if err != nil { |
| 41 | return nil, err |
| 42 | } |
| 43 | return &LocalRowSet{rows: rows}, nil |
| 44 | } |
| 45 | |
| 46 | func (e *LocalExecutor) ExecContext(ctx context.Context, query string, args ...any) (ExecResult, error) { |
| 47 | return e.db.ExecContext(ctx, query, args...) |
nothing calls this directly
no test coverage detected