Client configuration - rc file for sqlite3
~/.sqliterc
.headers ON
.timer ON
Create table with autoincrement primary key - id
CREATE TABLE table_name (id INTEGER PRIMARY KEY AUTOINCREMENT);
Order of field option important, don't swap it.
No comments:
Post a Comment