(query string, args ...any)
| 185 | } |
| 186 | |
| 187 | func (this *DB) QueryRow(query string, args ...any) *sql.Row { |
| 188 | if this.enableStat { |
| 189 | defer SharedQueryStatManager.AddQuery(query).End() |
| 190 | } |
| 191 | return this.rawDB.QueryRow(query, args...) |
| 192 | } |
| 193 | |
| 194 | // Close the database |
| 195 | func (this *DB) Close() error { |