| 122 | } |
| 123 | |
| 124 | bool SqlDatabase::rollback() |
| 125 | { |
| 126 | return sqlite3_exec(_handle, "ROLLBACK TRANSACTION;", NULL, NULL, NULL) == SQLITE_OK; |
| 127 | } |
| 128 | |
| 129 | bool SqlDatabase::doesColumnExist(QString table, QString column) |
| 130 | { |
no outgoing calls
no test coverage detected