sqlite3簡單命令操作

2021-12-29 23:55:26 字數 597 閱讀 5673

sqlite3簡單命令操作

sqlite3命令 

在控制台中輸入sqlite3 

幫助命令 

.help 

退出命令 

.quit .exit 

建立乙個新的資料庫 

sqlite3 檔案名字 

在db目錄中新建乙個test.db資料庫檔案 

mkdir db 

cd db 

sqlite3 test.db 

sqlite3 已經存在的檔案名字 

如果不存在的話就新建 

匯入資料.read 資料檔案 

.read test.sql 

列出所有的資料庫表  

.tables   

顯示資料庫結構 

.schema   

顯示表的結構 

.schema 表名   

匯出某個表的資料 

.dump 表名   

設定匯出目標 

.output 檔名 

.output stdout   

資料顯示相關 

.separator 分隔符   

.mode 模式 

lua簡單操作sqlite3

本文源自 luasql模組支援sqlite3,可以完成最基本的資料庫功能,不過官方文件上寫得不是很詳細。掃了下源 外加實驗了下,得出了點經驗。windows xp,luaforwindows require luasql.sqlite3 function enum table t print for...

SQLite3的操作命令

1 開啟命令操作面板 電腦 開始 執行 輸入 cmd 輸入 cd 進入c盤 2 建立資料庫檔案 c sqlite3 mydb.db 如果系統提示沒找到這個命令,說明沒有加入環境變數,此時應設定它的環境變數 如果目錄下沒有mydb.db,sqlite3就會建立這個資料庫。當出現 sqlite vers...

SQLite3命令操作大全

1.資料庫 表的建立,記錄的新增 查詢 修改和刪除 f sqlite3 database.db sqlite create table admin username text,age integer sqlite insert into admin values kuang 25 sqlite se...