I am trying to create a virtual table in sqlite3 using fts3 and have the column as auto-increment, but when inserting values, the column is not populated. Code:
CREATE VIRTUAL TABLE contact USING fts4( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT);
Insert: insert into the contact (name) values ββ('abc') the field 'id' does not increase and the data in the table looks only
abc
Auto-increment is not supported in fts3 sqlite3?
Yours faithfully,
John
source share