SQLite權威指南-CLP(command line program) [ 1 ]:建立一個foods.db並把P018的資料庫內容建立起來並測試
SQLite權威指南-CLP(command line program) [ 1 ]:建立一個foods.db並把P018的資料庫內容建立起來並測試
資料來源:SQLite權威指南 P018~P020
01.建立/開啟 db
sqlite3 foods.db
02.匯入
.read foods.sql
03.測試
.echo on
.mode col
.headers on
.nullvalue NULL
SELECT id, name FROM foods WHERE id=412;
04.離開
.q
下載: SQLite權威指南-CLP(command line program) [ 1 ]:建立一個foods.db並把P018的資料庫內容建立起來並測試.zip
One thought on “SQLite權威指南-CLP(command line program) [ 1 ]:建立一個foods.db並把P018的資料庫內容建立起來並測試”
資料來源:http://www.7headlines.com/article/show/516893554
如何建立 unicode (UTF-16)版的 SQLITE 資料庫
sqlite3 unicode_db
sqlite>PRAGMA encoding = "UTF-16";
sqlite> create table bar(foo text);