(ctx context.Context, stmt *exql.Statement, args ...interface{})
| 579 | } |
| 580 | |
| 581 | func (p *exprProxy) StatementExec(ctx context.Context, stmt *exql.Statement, args ...interface{}) (sql.Result, error) { |
| 582 | s, err := stmt.Compile(p.t) |
| 583 | if err != nil { |
| 584 | return nil, err |
| 585 | } |
| 586 | return compat.ExecContext(p.db, ctx, s, args) |
| 587 | } |
| 588 | |
| 589 | func (p *exprProxy) StatementPrepare(ctx context.Context, stmt *exql.Statement) (*sql.Stmt, error) { |
| 590 | s, err := stmt.Compile(p.t) |
nothing calls this directly
no test coverage detected