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
I created a fork, where this is fixed: https://github.com/asdoi/SQLite2XL
It has something to do with the backup, so all backups you did before won't work.
Just add it in your app-gradle file: implementation 'com.github.asdoi:SQLite2XL:e1b5e4d1cb'
Expected behavior
Import data from excel to sqlite
Actual behavior
sending message :table sqlite_sequence may not be dropped(code 1):,while compiling:DROP TABLE IF EXISTS sqlite_sequence
Steps to reproduce the issue
String directory_path = Environment.getExternalStorageDirectory().getPath() + "/cashDesk.xls";
ExcelToSQLite excelToSQLite = new ExcelToSQLite(this, DBHelper.DATABASE_NAME, true);
excelToSQLite.importFromFile(directory_path, new ExcelToSQLite.ImportListener() {
@OverRide
public void onStart() {
The text was updated successfully, but these errors were encountered: