sqlite 10 sec guide
Problem
You want to get up and running with sqlite
Solution
Install sqlite3 on linux, via yum: yum install sqlite3Then just run sqlite dbname
Example
% sqlite3 testdata.dbSQLite version 3.5.9Enter “.help” for instructionssqlite> create table memos(text,priority INTEGER);sqlite> insert into memos values(’deliver project description’,10);sqlite> insert into memos values(’lunch with Christine’,100);sqlite> select * from memos;deliver project description|10lunch with Christine|100sqlite>
Reference
sqlite3 linux man [...]
