Skip to content Skip to sidebar Skip to footer

Table Has No Column Named

I keep getting this 'Table has no column named' error, I saw few solutions here, but none of them helped me. I did see that I should go to settings/apps and clear data but I couldn

Solution 1:

You are missing _id column. Change

"CREATE TABLE "+ TableInfo.TABLE_NAME+"("+TableInfo.PLAYER_NAME+" TEXT,"+ TableInfo.PLAYER_Family+" TEXT);";

to

"CREATE TABLE "+ TableInfo.TABLE_NAME+"(_id INTEGER PRIMARY KEY AUTOINCREMENT, "+TableInfo.PLAYER_NAME+" TEXT,"+ TableInfo.PLAYER_Family+" TEXT);";

Post a Comment for "Table Has No Column Named"