I wanted to insert data into the database using SQLite but i fail to do it. I pressed on the button I\'ve created to input but the data could not be sent into the database. I\'v
First start changing your code from
db.execSQL("DROP TABLE IF EXISTS " + DATABASE_NAME);
to
db.execSQL("DROP TABLE IF EXISTS " + DATABASE_TABLE);
Good chance this explains the datatype error.