| 398 | } |
| 399 | |
| 400 | std::unique_ptr<DatabaseBatch> SQLiteDatabase::MakeBatch() |
| 401 | { |
| 402 | // We ignore flush_on_close because we don't do manual flushing for SQLite |
| 403 | return std::make_unique<SQLiteBatch>(*this); |
| 404 | } |
| 405 | |
| 406 | SQLiteBatch::SQLiteBatch(SQLiteDatabase& database) |
| 407 | : m_database(database) |
no outgoing calls
no test coverage detected