android - Syntax error in database -


I have created a database in my application (first it works fine with the group field). Now I want to create another area (called group). I have created that area. But the following error is showing:

  android.database.sqlite.SQLiteException: near the "group": syntax error: table ixtus (_id integer primary key autoincrement, price less text zero, description text Not zero, volume text no zero, not total text no null, class text no redundant, recurring text no empty, date text zero, group text is not zero);   

Create my command:

  "Create table ipsecines (_id integer primary key autoincrement," + "value text is not empty, description text is not empty, "+" The volume text is not empty, "+" the total text is not empty, "+" the class text is not empty, "+" the recurrence text is not zero, "+" the date text is not zero, "+" group text Is not futile); ";    

group is a keyword, so its not used Should be created when creating a table

Comments