Creating Table In Sqlite Android
I'm trying to create three tables for my sqlite database in android, but the tables won't create, just the database. Using viewing the DDMS, the database is created, but when I vie
Solution 1:
You have a comma at the end of DATABASE_CREATE that shouldn't be there.
... weightclassVARCHARnot null,);"
Should be
... weightclassVARCHARnot null);"
Post a Comment for "Creating Table In Sqlite Android"