| 26 | static bool hasProperties(sqlite3* db); |
| 27 | |
| 28 | void sqlCheck(sqlite3* db, int i) |
| 29 | { |
| 30 | if (i != SQLITE_OK) |
| 31 | error("database error: {}", sqlite3_errmsg(db)); |
| 32 | } |
| 33 | |
| 34 | sqlite3* sqlOpen(const std::string filename, int flags) |
| 35 | { |
no test coverage detected