Removed SQL closing entire program

This commit is contained in:
2025-07-18 23:11:48 +03:00
parent 88d33a1e20
commit b8b3ccfbcb

View File

@@ -21,7 +21,7 @@ static void execSQL(std::string sql) {
} }
if (errorCode) { if (errorCode) {
std::cerr << sqlite3_errmsg(database) << " exiting!\n"; std::cerr << sqlite3_errmsg(database) << "!\n";
exit(1); return;
} }
} }