- 軟件大小:267KB
- 軟件語言:中文
- 軟件類型:國產(chǎn)軟件
- 軟件類別:免費(fèi)軟件 / EXE文件
- 更新時(shí)間:2017-05-31 13:17
- 運(yùn)行環(huán)境:WinAll, WinXP, Win7, Win8
- 軟件等級(jí):
- 軟件廠商:
- 官方網(wǎng)站:http://www.portlandswalk.com
56KB/中文/10.0
88KB/中文/8.7
168KB/中文/7.1
78KB/中文/2.3
10KB/中文/6.6
sqlite3.exe是一款功能強(qiáng)大的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),這款文件可用命令行的數(shù)據(jù)庫,完美繼承了mysql的功能和特點(diǎn),下面有綠色資源網(wǎng)小編為您帶來sqlite3.exe 64位/32位下載。需要的朋友歡迎來本站免費(fèi)下載使用。
sqlite3.exe是一款輕型的數(shù)據(jù)庫,它的設(shè)計(jì)目標(biāo)是嵌入式的,而且目前已經(jīng)在很多嵌入式產(chǎn)品中使用了它,它占用資源非常的低,在嵌入式設(shè)備中,可能只需要幾百K的內(nèi)存就夠了。它能夠支持Windows/Linux/Unix等等主流的操作系統(tǒng),同時(shí)能夠跟很多程序語言相結(jié)合,比如TCL、php、Java等,還有ODBC接口,同樣比起Mysql、PostgreSQL這兩款開源世界著名的數(shù)據(jù)庫管理系統(tǒng)來講,它的處理速度比他們都快。
1 在綠色資源網(wǎng)下載sqlite3.exe文件
2 命令行cmd,進(jìn)入到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 條件;
增加一個(gè)列: Alter table 表名 add column 字段 數(shù)據(jù)類型;
選擇查詢: select 字段(以”,”隔開) from 表名 where 條件;
日期和時(shí)間: Select datetime('now')
日期: select date('now');
時(shí)間: 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)時(shí),經(jīng)常需要改動(dòng)到跟數(shù)據(jù)庫相關(guān)的參數(shù),光有SQL語句使用知識(shí)毫無用處,好在Android命令行下有sqlite3命令,而現(xiàn)在系統(tǒng)的應(yīng)用會(huì)把數(shù)據(jù)保存到/data/data/包名/database/目錄下,該目錄下會(huì)有.db擴(kuò)展名的數(shù)據(jù)庫文件,關(guān)于該命令的使用如下例:
1、打開指定數(shù)據(jù)庫:
sqlite3 /data/data/com.android.providers.settings/databases/settings.db
2、打開數(shù)據(jù)庫后進(jìn)入sqlite>命令行,可以使用.help查看可用指令了,也可以使用標(biāo)準(zhǔn)的SQL語句進(jìn)行調(diào)試使用了,當(dāng)我們使用update、delete、insert等指令更新SQL數(shù)據(jù)庫后,重啟后就可以繼續(xù)調(diào)試驗(yàn)證,而不用修改源碼重編譯燒錄調(diào)試了,等調(diào)試好參數(shù)后再修改源碼驗(yàn)證就搞定。
請(qǐng)描述您所遇到的錯(cuò)誤,我們將盡快予以修正,謝謝!
*必填項(xiàng),請(qǐng)輸入內(nèi)容