03Sqlite使用技巧

2022-07-19 13:12:13 字數 324 閱讀 7608

sqlite資料庫的資料刪除了,檔案大小還是很

遇到這種問題可以用命令:vacuum 來解決,該命令可以釋放暫儲空間。

具體操作方法是:

​ 1.使用db browser for sqlite.exe開啟資料庫檔案,"瀏覽資料"標籤頁中選擇待刪除內容的表,使用」刪除記錄「按鈕刪除表中的所有資料。然後點選」寫入更改「按鈕,則完成資料刪除。

​ 2.「執行sql」標籤頁中sql語句輸入框中輸入「vacuum 」命令,點選上方的藍色小箭頭,執行sql語句,執行成功,則當前頁面下方的狀態列中會提示「查詢執行成功:vacuum(耗時76ms)」。此時檔案大小則會變為建立是的最小值。

一些SQLite技巧

sqlite自增id自段 使用方法為integer primary key autoincrement 如 create table 21andy id integer primary key autoincrement,21andy varchar 100 not null,date date 注...

一些SQLite技巧

sqlite自增id自段 使用方法為integer primary key autoincrement 如 create table 21andy id integer primary key autoincrement,21andy varchar 100 notnull,date date 注意...

SQLite 使用總結

跟mysql是有所區別的,自己用了幾天,總結如下 1 不能用mysql的分號 如 select count as count from ken content 而應該用自己打上去的分號 如 select count as count from ken content 2 主鍵一定要用 integer...