Bruno S. Oliveira
<[EMAIL PROTECTED]> wrote:
The problem is that, with a table created like this:
sqlite> CREATE TABLE t1 (a INTEGER AUTO INCREMENT NOT NULL, b TEXT,
PRIMARY KEY (a));

Make it

CREATE TABLE t1 (a INTEGER PRIMARY KEY AUTOINCREMENT, b TEXT);

The autoincrement column must be spelled precisely this way.

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to