gpt4 book ai didi

android - SQLite 异常 : near "references": syntax error

转载 作者:行者123 更新时间:2023-11-29 17:56:36 25 4
gpt4 key购买 nike

String CREATE_ASSIGNMENTS_TABLE= "create table "
+ ASSIGNMENTS + "(" + TITLE
+ " text not null, " + DESCRIPTION
+ " text not null, " + REFERENCES + " text not null );";

这是我在 SQLite 中创建表的创建表查询。

我有三个字段(title,description,reference)。都是文本字段。但是当我执行代码时,出现以下异常:

android.database.sqlite.SQLiteException: near "references": syntax error (code 1): , while compiling: create table ASSIGNMENTS(TITLE text not null, DESCRIPTION text not null, REFERENCES text not null);

它指向 REFERENCES 字段中的错误。但我在那里找不到任何语法错误。请帮我解决这个问题。

最佳答案

REFERENCESkeyword在 SQL 语法中。更改列名称或在反引号中引用它:

`REFERENCES`

关于android - SQLite 异常 : near "references": syntax error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18850764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com