(ctx context.Context, stmt *exql.Statement)
| 587 | } |
| 588 | |
| 589 | func (p *exprProxy) StatementPrepare(ctx context.Context, stmt *exql.Statement) (*sql.Stmt, error) { |
| 590 | s, err := stmt.Compile(p.t) |
| 591 | if err != nil { |
| 592 | return nil, err |
| 593 | } |
| 594 | return compat.PrepareContext(p.db, ctx, s) |
| 595 | } |
| 596 | |
| 597 | func (p *exprProxy) StatementQuery(ctx context.Context, stmt *exql.Statement, args ...interface{}) (*sql.Rows, error) { |
| 598 | s, err := stmt.Compile(p.t) |
nothing calls this directly
no test coverage detected