I have a the below table script:
\"CREATE TABLE \" + TABLE_XXX + \"(\" + XXX_ID + \" INTEGER PRIMARY KEY,\" + XXX_I
There are missing whitespaces in your statement.
+ XXX_IS_OK +"INTEGER, "
should be:
+ XXX_IS_OK +" INTEGER, "