You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hum, problem is that sqlite3_errstr() is availlable only on recent Linux distributions, not in the one used for continuous integration testing ; will need some #ifdef
The database constructor does not return the good error message with the following code :
SQLite::Database* db = new SQLite::Database(filename, SQLITE_OPEN_CREATE);
In my case it returned an out of memory message.
Can be fixed by using
sqlite3_errstr()
instead ofsqlite3_errmsg()
.The text was updated successfully, but these errors were encountered: