Satellite: saving 配置服务器
[pkm.git] / pages / SQLite.textile
blobeb3aa414511c8f75762104a92852c31ed972169e
1 # "download":http://www.sqlite.org/download.html
2 # ln -s /path/to/sqlite3.bin /usr/local/bin/sqlite3
3 # sqlite3 test.db
4 # 操作
5 {{{
6 SQLite version 3.3.10
7 Enter ".help" for instructions
8 sqlite> create table tbl1(one varchar(10), two smallint);
9 sqlite> insert into tbl1 values('hello!',10);
10 sqlite> insert into tbl1 values('goodbye', 20);
11 sqlite> select * from tbl1;
12 hello!|10
13 goodbye|20
14 sqlite>
15 }}}
18 链接: "Getting Started":http://www.sqlite.org/sqlite.html, "Home Page":http://www.sqlite.org