-1

私のアプリケーションでは、データベースを作成しました(以前はグループフィールドで正常に機能していました)。次に、もう1つのフィールド(グループと呼ばれます)を作成します。そのフィールドを作成しましたが、次のエラーが表示されます。

android.database.sqlite.SQLiteException: near "group": syntax error: create table incomexpense(_id integer primary key autoincrement,price text not null,description text not null,quantity text not null,total text not null,category text not null,recurrence text not null,date text not null,group text not null);

私の作成コマンド:

"create table incomexpense(_id integer primary key autoincrement,"+"price text not null,description text not null,"+"quantity text not null,"+"total text not null,"+"category text not null,"+"recurrence text not null,"+"date text not null,"+"group text not null);";
4

1 に答える 1

4

groupはキーワードであるため、テーブルの作成中には使用しないでください。

于 2012-07-10T05:15:31.640 に答える