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