(args ...any)
| 94 | } |
| 95 | |
| 96 | func (this *Stmt) QueryRow(args ...any) *sql.Row { |
| 97 | if this.enableStat { |
| 98 | defer SharedQueryStatManager.AddQuery(this.query).End() |
| 99 | } |
| 100 | return this.rawStmt.QueryRow(args...) |
| 101 | } |
| 102 | |
| 103 | func (this *Stmt) Close() error { |
| 104 | return this.rawStmt.Close() |