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
When trying to open a database with wrong password, the app crash on the following exception:
Exception has occurred.
SqfliteDatabaseException (DatabaseException(file is not a database: , while compiling: select count(*) from sqlite_master;))
that happen at the rethrow; at line 110 in factory_mixin.dart
This happen even when sqflite.openDatabase() is called from inside a try block so I guess the error is not correctly handled all the way back to the openDatabase function.
The text was updated successfully, but these errors were encountered:
When trying to open a database with wrong password, the app crash on the following exception:
that happen at the
rethrow;
at line 110 in factory_mixin.dartThis happen even when sqflite.openDatabase() is called from inside a try block so I guess the error is not correctly handled all the way back to the
openDatabase
function.The text was updated successfully, but these errors were encountered: