I move database create table from Applcation.onCreate to SqliteHelper.onCreate.
In Application, I must check if table already exists. But in SqliteHelper, as it's called on creation of database file, I don't think it's nessasary to use "IF NOT EXISTS"
CREATE TABLE {TABLE_NAME} IF NOT EXISTS (_id bla bla);
Can I change this sql to below?
CREATE TABLE {TABLE_NAME} (_id bla bla)
EDIT ---------
I asked if SqliteHelper.onCreate can called several times.