真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

什么是SQLite

這篇文章主要介紹“什么是SQLite”,在日常操作中,相信很多人在什么是SQLite問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”什么是SQLite”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

公司主營業(yè)務(wù):做網(wǎng)站、成都網(wǎng)站制作、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。成都創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。成都創(chuàng)新互聯(lián)推出新余免費做網(wǎng)站回饋大家。

1. 介紹

SQLite 是一個開源的嵌入式關(guān)系數(shù)據(jù)庫,實現(xiàn)自包容、零配置、支持事務(wù)的SQL數(shù)據(jù)庫引擎。 其特點是高度便攜、使用方便、結(jié)構(gòu)緊湊、高效、可靠。 與其他數(shù)據(jù)庫管理系統(tǒng)不同,SQLite 的安裝和運行非常簡單,在大多數(shù)情況下 - 只要確保SQLite的二進制文件存在即可開始創(chuàng)建、連接和使用數(shù)據(jù)庫。如果您正在尋找一個嵌入式數(shù)據(jù)庫項目或解決方案,SQLite是絕對值得考慮。

2. 安裝

SQLite on Windows

    進入 SQL 下載頁面:http://www.sqlite.org/download.html

    下載 Windows 下的預(yù)編譯二進制文件包:

  •         sqlite-shell-win32-x86-.zip

  •         sqlite-dll-win32-x86-.zip

    注意: 是 sqlite 的編譯版本號

    將 zip 文件解壓到你的磁盤,并將解壓后的目錄添加到系統(tǒng)的 PATH 變量中,以方便在命令行中執(zhí)行 sqlite 命令。

    可選: 如果你計劃發(fā)布基于 sqlite 數(shù)據(jù)庫的應(yīng)用程序,你還需要下載源碼以便編譯和利用其 API

  •         sqlite-amalgamation-.zip

SQLite on Linux

在 多個 Linux 發(fā)行版提供了方便的命令來獲取 SQLite:
 

/* For Debian or Ubuntu /*
$ sudo apt-get install sqlite3 sqlite3-dev
 
/* For RedHat, CentOS, or Fedora/*
$ yum install SQLite3 sqlite3-dev

SQLite on Mac OS X

如果你正在使用 Mac OS 雪豹或者更新版本的系統(tǒng),那么系統(tǒng)上已經(jīng)裝有 SQLite 了。


3. 創(chuàng)建首個 SQLite 數(shù)據(jù)庫

現(xiàn)在你已經(jīng)安裝了 SQLite 數(shù)據(jù)庫,接下來我們創(chuàng)建首個數(shù)據(jù)庫。在命令行窗口中輸入如下命令來創(chuàng)建一個名為  test.db 的數(shù)據(jù)庫。
 

sqlite3 test.db

創(chuàng)建表:
 

sqlite> create table mytable(id integer primary key, value text);

該表包含一個名為 id 的主鍵字段和一個名為 value 的文本字段。

注意: 最少必須為新建的數(shù)據(jù)庫創(chuàng)建一個表或者視圖,這么才能將數(shù)據(jù)庫保存到磁盤中,否則數(shù)據(jù)庫不會被創(chuàng)建。

接下來往表里中寫入一些數(shù)據(jù):
 

sqlite> insert into mytable(id, value) values(1, 'Micheal');
sqlite> insert into mytable(id, value) values(2, 'Jenny');
sqlite> insert into mytable(value) values('Francis');
sqlite> insert into mytable(value) values('Kerk');

查詢數(shù)據(jù):
 

sqlite> select * from mytable;
1|Micheal
2|Jenny
3|Francis
4|Kerk

設(shè)置格式化查詢結(jié)果:
 

sqlite> .mode column;
sqlite> .header on;
sqlite> select * from mytable;
id     value
----------- -------------
1      Micheal
2      Jenny
3      Francis
4      Kerk

.mode column 將設(shè)置為列顯示模式,.header 將顯示列名。

修改表結(jié)構(gòu),增加列:
 

sqlite> alter table mytable add column email text not null '' collate nocase;;

創(chuàng)建視圖:
 

sqlite> create view nameview as select * from mytable;

創(chuàng)建索引:
 

sqlite> create index test_idx on mytable(value);


4. 一些有用的 SQLite 命令

顯示表結(jié)構(gòu):

sqlite> .schema [table]

獲取所有表和視圖:

sqlite > .tables

獲取指定表的索引列表:

sqlite > .indices [table ]

導(dǎo)出數(shù)據(jù)庫到 SQL 文件:

sqlite > .output [filename ] 
sqlite > .dump 
sqlite > .output stdout

從 SQL 文件導(dǎo)入數(shù)據(jù)庫:

sqlite > .read [filename ]

格式化輸出數(shù)據(jù)到 CSV 格式:

sqlite >.output [filename.csv ] 
sqlite >.separator , 
sqlite > select * from test; 
sqlite >.output stdout

從 CSV 文件導(dǎo)入數(shù)據(jù)到表中:

sqlite >create table newtable ( id integer primary key, value text ); 
sqlite >.import [filename.csv ] newtable

備份數(shù)據(jù)庫:

/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql

恢復(fù)數(shù)據(jù)庫:

/* usage: sqlite3 [database ] < [filename ] */ 
sqlite3 mytable.db < backup.sql

到此,關(guān)于“什么是SQLite”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)頁標題:什么是SQLite
本文鏈接:http://weahome.cn/article/ipejso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部