android.database.sqlite.SQLiteException:“组”附近:语法错误(代码1):

android.database.sqlite.SQLiteException:“组”附近:语法错误(代码1):,第1张

概述错误Causedby:android.database.sqlite.SQLiteException:near"Group":syntaxerror(code1):,whilecompiling:createtableGroup(_idintegerprimarykeyautoincrement,GroupNameTEXT,MemberNameTEXT,TotalExpenseTEXT);码:-publicstatic

错误

Caused by: androID.database.sqlite.sqliteException: near "Group": Syntax error (code 1): , while compiling: create table Group(_ID integer primary key autoincrement, Groupname TEXT , Membername TEXT , TotalExpense TEXT );

码:-

public static final String CREATE_GROUP_table = "create table " + ROOM_GROUP_table +            "(" + GROUP_ID + " integer primary key autoincrement, "            + ROOM_ColUMN_GROUP_name + " TEXT , "            + ROOM_ColUMN_MEMBER_name + " TEXT , "            + ROOM_ColUMN_TOTAL_EXPENSE + " TEXT );";

解决方法:

您的表格名称不能为Group,Group是关键字.

sqlite关键字列表:https://www.sqlite.org/lang_keywords.html

总结

以上是内存溢出为你收集整理的android.database.sqlite.SQLiteException:“组”附近:语法错误(代码1):全部内容,希望文章能够帮你解决android.database.sqlite.SQLiteException:“组”附近:语法错误(代码1):所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1094026.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存