SQlite 簡單介紹 快速建立資料庫
SQlite 簡單介紹 介紹一下SQlite, 這套軟體就如同它的名字,是個lite 版本的sql :) 官方網站 http://www.sqlite.org/ 維基: SQlite 裡頭有介紹目前的支援的語言以及相關的應用套件。 像是: pysqlite - A Python Wrapper. Sqlite-ruby - Ruby 語言接口。 SQLiteManager - 管理 SQLite 數據庫的多語言的 PHP4 寫的 web 工具。 以下列一下常用的指令集: $ sqlite3 xxxx.db 打開某db sqlite> 創造系 sqlite> create table tbl1(one varchar(10), two smallint); sqlite> insert into tbl1 values('hello!',10); sqlite> insert into tbl1 values('goodbye', 20); sqlite> select * from tbl1; 或是 sqlite> CREATE TABLE tbl2 ( ...> f1 varchar(30) primary key, ...> f2 text, ...> f3 real ...> ); 觀察系 .databases List names and files of attached databases .schema ?TABLE? Show the CREATE statements .indices TABLE Show names of all indices on TABLE 輸入/輸出 .dump ?TABLE? ... Dump the database in an SQL text format .import FILE TABLE Import data from FILE into TABLE .load FILE ?ENTRY? Load an extension library