[sqlite] Re: autoincrement and fts2?

2007-08-01 Thread Adam Megacz
>> > In fts tables all columns other than rowid are of type TEXT. It >> > doesn't matter what you put in the type, they will be of type TEXT. >> > The rowid is the standard SQLite rowid, so it does provide an INTEGER >> > PRIMARY KEY AUTOINCREMENT column. >> Scott, thanks for your reply. Howeve

Re: [sqlite] Re: autoincrement and fts2?

2007-07-21 Thread Scott Hess
Adam, As it currently stands, fts2 (and fts1, if you ever do a delete) is broken if you use VACUUM. It's not an issue of how the table is defined, it's an issue of the internal definitions - when fixed, it will just be fixed, you won't define your tables differently. [There's been some discussio

[sqlite] Re: autoincrement and fts2?

2007-07-21 Thread Adam Megacz
"Scott Hess" <[EMAIL PROTECTED]> writes: > In fts tables all columns other than rowid are of type TEXT. It > doesn't matter what you put in the type, they will be of type TEXT. > The rowid is the standard SQLite rowid, so it does provide an INTEGER > PRIMARY KEY AUTOINCREMENT column. Scott, than