I\'m trying to create a table of statistics but for some reason, it doesn\'t create until I call StatisticsAdapter.insertEntry() for the first time. After that, I c
Create Class DatabaseHandler extends SQLiteOpenHelper
and override like below:
// Creating Tables
@Override
public void onCreate(SQLiteDatabase db) {
String CREATE_CONTACTS_TABLE = Crate table query;
db.execSQL(CREATE_CONTACTS_TABLE);
}
Now, you want to called SQLiteDatabase db = cintext.getWritableDatabase(); from your Activity for accessing Database table.