(ctx context.Context, args ...any)
| 64 | } |
| 65 | |
| 66 | func (this *Stmt) QueryContext(ctx context.Context, args ...any) (*sql.Rows, error) { |
| 67 | if this.enableStat { |
| 68 | defer SharedQueryStatManager.AddQuery(this.query).End() |
| 69 | } |
| 70 | return this.rawStmt.QueryContext(ctx, args...) |
| 71 | } |
| 72 | |
| 73 | func (this *Stmt) Query(args ...any) (*sql.Rows, error) { |
| 74 | if this.enableStat { |