在虛擬機上安裝
sqlite3:
#apt-get install sqlite3
在命令列下使用資料庫
1.
建立資料庫
#sqlite3 student.db
2.
建立表》create table stu( id varchar(8), name varchar(20) , ageinteger );
ps:在此為student.db資料庫建立了表stu,該錶有三個字段 id name age。varchar 字段資料型別. 每一條sqlite語句要以 「;」 結尾
ps:檢視該資料庫下有哪些表 >.table
3.
向表插入資料
>insert into stu values( 『1101』 , 『test』 , 25);
4.
取出表裡的所有記錄
>select * from stu;
5.
刪除表裡的某條記錄
>delete from stu where id=1101;
6.
退出》.quit;
ps:任何一條sql的返回語句分為兩種情況,一種是返回表的,一種是不返回表的。
iOS 原生sqlite3的使用方法
sqlite?sql語句常用操作 增 刪 改 查,crud,create 新建 retrieve 檢索 update 更新 delete 刪除 sql語法寫法特點 1 不區分大小寫 create create 2 每條語句以分號 結尾 3 關鍵字建議大寫 sql語句常用關鍵字 select inse...
sqlite3的基本使用
在linux下使用sqlite資料庫 2.其次在當前目錄中建立資料庫,使用如下命令 sqlite3 test.db 3.進入資料庫後,在提示符 sqlite 輸入如下命令 sqlite databases 此時,到當前目錄下,可以看到test.db生成 這樣,資料庫建立完成 4.在test.db資料...
使用sqlite3 模組操作sqlite3資料庫
python內建了sqlite3模組,可以操作流行的嵌入式資料庫sqlite3。如果看了我前面的使用 pymysql 操作mysql資料庫這篇文章就更簡單了。因為它們都遵循pep 249,所以操作方法幾乎相同。廢話就不多說了,直接看 吧。都差不多,首先匯入模組,然後建立連線,然後獲取游標物件,之後利...