SQLite3 fts3 自动增量不起作用

发布于 2024-10-31 22:27:39 字数 318 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傾旎 2024-11-07 22:27:39

我在另一个问题此处

简短的答案是使用“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. :)

孤独患者 2024-11-07 22:27:39

创建 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文