SQLite Autoincrement
-- SQLite autoincrement?
-- Use: INTEGER PRIMARY KEY
-- Example:
CREATE TABLE messages( id INTEGER PRIMARY KEY, message TEXT );
KostasX
-- SQLite autoincrement?
-- Use: INTEGER PRIMARY KEY
-- Example:
CREATE TABLE messages( id INTEGER PRIMARY KEY, message TEXT );
CREATE TABLE user(id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT)