SQLite3 fts3 自动增量不起作用
我正在尝试使用 fts3 在 sqlite3 中创建一个虚拟表,并有一列作为自动增量,但是在插入值时,该列没有被填充。 代码:
CREATE VIRTUAL TABLE contact
USING fts4(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT);
当插入:插入联系人(姓名)值('abc')时,'id'字段不会递增,表中的数据仅看起来
|abc
sqlite3 的 fts3 不支持自动增量吗?
问候,
约翰
I am trying to create a virtual table in sqlite3 using fts3 and having a column as autoincrement but when inserting values, the column is not getting populated.
Code:
CREATE VIRTUAL TABLE contact
USING fts4(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT);
WHen inserting : insert into contact (name) values ('abc') the 'id' field is not getting incremented and the data in the table looks only
|abc
Is autoincrement not supported in fts3 of sqlite3 ?
Regards,
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在另一个问题此处
简短的答案是使用“rowid”列(特殊列)作为 fts3 表的 id。
不确定您是否可以引用 rowid 列,因为我还没有尝试过。
希望这能解决您的问题。 :)
I found the answer to this question in another question here
The short answer is to use the column "rowid" (Special column) for id's of fts3 tables.
Not sure if you can reference the rowid column as i haven't tried that.
Hope this solves your problem. :)
创建 FTS“虚拟表”时,它会忽略除列名之外的所有内容(例如自动增量、主键、唯一、甚至整数)。 FTS 表中的所有内容都只是文本。它读取这些关键字时没有错误,但根据文档它们只是“糖语法”。
http://www.sqlite.org/fts3.html
When creating an FTS 'Virtual Table' it ignores everything but the column names (e.g. auto increment, primary key, unique, and even Integer). Everything to an FTS table is just text. It reads those keywords in without error, but they are just 'sugary syntax' per the documentation.
http://www.sqlite.org/fts3.html