- 軟件大小:267KB
- 軟件語言:中文
- 軟件類型:國產(chǎn)軟件
- 軟件類別:免費軟件 / EXE文件
- 更新時間:2017-05-31 13:17
- 運行環(huán)境:WinAll, WinXP, Win7, Win8
- 軟件等級:
- 軟件廠商:
- 官方網(wǎng)站:http://www.lz0519.com
56KB/中文/10.0
88KB/中文/8.7
168KB/中文/7.1
78KB/中文/2.3
10KB/中文/6.6
sqlite3.exe是一款功能強大的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),這款文件可用命令行的數(shù)據(jù)庫,完美繼承了mysql的功能和特點,下面有綠色資源網(wǎng)小編為您帶來sqlite3.exe 64位/32位下載。需要的朋友歡迎來本站免費下載使用。
sqlite3.exe是一款輕型的數(shù)據(jù)庫,它的設(shè)計目標是嵌入式的,而且目前已經(jīng)在很多嵌入式產(chǎn)品中使用了它,它占用資源非常的低,在嵌入式設(shè)備中,可能只需要幾百K的內(nèi)存就夠了。它能夠支持Windows/Linux/Unix等等主流的操作系統(tǒng),同時能夠跟很多程序語言相結(jié)合,比如TCL、php、Java等,還有ODBC接口,同樣比起Mysql、PostgreSQL這兩款開源世界著名的數(shù)據(jù)庫管理系統(tǒng)來講,它的處理速度比他們都快。
1 在綠色資源網(wǎng)下載sqlite3.exe文件
2 命令行cmd,進入到sqlite3.exe目錄
3 >sqlite3.exe database.db 來打開sqlite數(shù)據(jù)庫。
4 基本語法:
>.help 查找?guī)椭?/p>
sqlite> .help
.backup ?DB? FILE Backup DB (default "main") to FILE
.bail ON|OFF Stop after hitting an error. Default OFF
.databases List names and files of attached databases
.dump ?TABLE? ... Dump the database in an SQL text format
.echo ON|OFF Turn command echo on or off
.exit Exit this program
......
創(chuàng)建表: create table 表名(元素名 類型,…);
刪除表: drop table 表名;
插入數(shù)據(jù): insert into 表名 values(, , ,) ;
創(chuàng)建索引: create [unique] index 索引名on 表名(col….);
刪除索引: drop index 索引名(索引是不可更改的,想更改必須刪除重新建)
刪除數(shù)據(jù): delete from 表名;
更新數(shù)據(jù): update 表名 set 字段=’修改后的內(nèi)容’ where 條件;
增加一個列: Alter table 表名 add column 字段 數(shù)據(jù)類型;
選擇查詢: select 字段(以”,”隔開) from 表名 where 條件;
日期和時間: Select datetime('now')
日期: select date('now');
時間: select time('now');
總數(shù):select count(*) from table1;
求和:select sum(field1) from table1;
平均:select avg(field1) from table1;
最大:select max(field1) from table1;
最?。簊elect min(field1) from table1;
排序:select 字段 from table1 order by 字段(desc或asc) ;(降序或升序)
分組:select 字段 from table1 group by 字段,字段… ;
限制輸出:select 字段 from table1 limit x offset y;= select 字段 from table1 limit y , x;
(備注:跳過y行,取x行數(shù)據(jù))
在調(diào)試Android上層系統(tǒng)時,經(jīng)常需要改動到跟數(shù)據(jù)庫相關(guān)的參數(shù),光有SQL語句使用知識毫無用處,好在Android命令行下有sqlite3命令,而現(xiàn)在系統(tǒng)的應(yīng)用會把數(shù)據(jù)保存到/data/data/包名/database/目錄下,該目錄下會有.db擴展名的數(shù)據(jù)庫文件,關(guān)于該命令的使用如下例:
1、打開指定數(shù)據(jù)庫:
sqlite3 /data/data/com.android.providers.settings/databases/settings.db
2、打開數(shù)據(jù)庫后進入sqlite>命令行,可以使用.help查看可用指令了,也可以使用標準的SQL語句進行調(diào)試使用了,當我們使用update、delete、insert等指令更新SQL數(shù)據(jù)庫后,重啟后就可以繼續(xù)調(diào)試驗證,而不用修改源碼重編譯燒錄調(diào)試了,等調(diào)試好參數(shù)后再修改源碼驗證就搞定。
請描述您所遇到的錯誤,我們將盡快予以修正,謝謝!
*必填項,請輸入內(nèi)容