(ctx context.Context, args ...any)
| 87 | } |
| 88 | |
| 89 | func (this *Stmt) QueryRowContext(ctx context.Context, args ...any) *sql.Row { |
| 90 | if this.enableStat { |
| 91 | defer SharedQueryStatManager.AddQuery(this.query).End() |
| 92 | } |
| 93 | return this.rawStmt.QueryRowContext(ctx, args...) |
| 94 | } |
| 95 | |
| 96 | func (this *Stmt) QueryRow(args ...any) *sql.Row { |
| 97 | if this.enableStat { |