| 336 | |
| 337 | |
| 338 | bool SQLiteResult::reset(const QString &query) |
| 339 | { |
| 340 | if (!prepare(query)) |
| 341 | return false; |
| 342 | return exec(); |
| 343 | } |
| 344 | |
| 345 | bool SQLiteResult::prepare(const QString &query) |
| 346 | { |
nothing calls this directly
no outgoing calls
no test coverage detected