Hi,

I am using SQLite 2.8.5 and I wanna use a primary key field in one of my tables.

~$ sqlite :memory:
SQLite version 2.8.5
Enter ".help" for instructions
sqlite> create table testing(title text, id AUTOINCREMENT);
sqlite> insert into testing(title) VALUES('this is just a test');
sqlite> select * from testing;
this is just a test|
sqlite>

I already read the doc... wondering whats 'wrong' there.

Greets and thanks


---------------------------------------------------- Christian Kienle http://www.QtForum.org ----------------------------------------------------






Reply via email to