Hello, I need to create a perpetually-unique column in an FTS2 table.
For example:
create virtual table t using fts2(c);
insert into t (c) values ('a');
select rowid,c from t;
1|a
delete from t;
insert into t (c) values ('b');
select rowid,c from t;
1|b
How can I get the last query to return some value other than "1" (the
column need not be called ROWID; any name will work)?
- a
--
PGP/GPG: 5C9F F366 C9CF 2145 E770 B1B8 EFB1 462D A146 C380
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------