message coming as imported but data is notthere in table
Steps to reproduce the issue
SQLiteOpenHelper helper = new DataAccessLayer.DatabaseHelper(DashboardActivity.this);
final SQLiteDatabase db = helper.getWritableDatabase();
// if you want to add column in excel and import into DB, you must drop the table
ExcelToSQLite excelToSQLite = new ExcelToSQLite(getApplicationContext(), DatabaseConstants.DATABASE_NAME, true);
// Import EXCEL FILE to SQLite
excelToSQLite.importFromFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/tblvanMST.xls", new ExcelToSQLite.ImportListener() {
@Override
public void onStart() {
Expected behavior
Import data from excel to sqlite
Actual behavior
message coming as imported but data is notthere in table
Steps to reproduce the issue
SQLiteOpenHelper helper = new DataAccessLayer.DatabaseHelper(DashboardActivity.this); final SQLiteDatabase db = helper.getWritableDatabase(); // if you want to add column in excel and import into DB, you must drop the table ExcelToSQLite excelToSQLite = new ExcelToSQLite(getApplicationContext(), DatabaseConstants.DATABASE_NAME, true); // Import EXCEL FILE to SQLite excelToSQLite.importFromFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/tblvanMST.xls", new ExcelToSQLite.ImportListener() { @Override public void onStart() {