Skip to content Skip to sidebar Skip to footer

Android.database.sqlite.sqliteexception: Near "group": Syntax Error (code 1):

Error Caused by: android.database.sqlite.SQLiteException: near 'Group': syntax error (code 1): , while compiling: create table Group(_id integer primary key autoincrement, GroupNam

Solution 1:

Your table name can't be Group, Group is a keyword.

List of sqlite keywords: https://www.sqlite.org/lang_keywords.html

Post a Comment for "Android.database.sqlite.sqliteexception: Near "group": Syntax Error (code 1):"