命令列:
建立資料庫
sqlite3 test.db //在命令列下並進入命令列操作,而且不能在sqlite操作視窗建立
.databases //輸入該命令可以檢視之前建立的資料庫
//輸入.help可以檢視幫助和相應的命令,記住help前邊有個點!
建立資料表
create table user(name,address,email); //建立user的表,後邊為表的列值
向資料表插入資料
insert into user values ('duke','china','[email protected]');
//向user表插入資料,字串要用雙引號
從資料表查詢資料
select * from user; //查詢user資料表的資料
圖形介面:
linux下有款叫sqlite database browser的圖形化工具
使用sqlite3 模組操作sqlite3資料庫
python內建了sqlite3模組,可以操作流行的嵌入式資料庫sqlite3。如果看了我前面的使用 pymysql 操作mysql資料庫這篇文章就更簡單了。因為它們都遵循pep 249,所以操作方法幾乎相同。廢話就不多說了,直接看 吧。都差不多,首先匯入模組,然後建立連線,然後獲取游標物件,之後利...
sqlite3 命令介紹
用sqlite3建立資料庫的方法很簡單,只要在shell下鍵入 以下 符號為shell提示號,請勿鍵入 sqlite3 foo.db 進入了sqlite3之後,會看到以下文字 sqlite version 3.1.3 enter help for instructions sqlite 這時如果使用...
sqlite3基本操作
sqlite3對很多通過的sql語句都支援,像select,update,insert,delete等等都支援地很好,只要懂sql語句就可以用sqlite3。1,下面是幾個比較重要的api函式 開啟資料庫,如果不存在則建立乙個 int sqlite3 open const char sqlite3 ...