小編給大家分享一下Ubuntu 12.04下SQLite數(shù)據(jù)庫怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
平果網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,平果網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為平果1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個(gè)售后服務(wù)好的平果做網(wǎng)站的公司定做!
在Ubuntu 12.04下進(jìn)行SQLite開發(fā)簡單實(shí)例如下:
1、 安裝SQLite3
hadron@hadron ~ $ sudo apt-get install sqlite sqlite3
2、 查看版本號
hadron@hadron ~ $ sqlite3 -version
3、 創(chuàng)建test數(shù)據(jù)庫
hadron@hadron ~ $ sqlite3 test.db
SQLite version 3.7.9 2011-11-01 00:52:41
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
4、 查看數(shù)據(jù)庫
sqlite> .database
seq name file
--- --------------- ----------------------------------------------------------
0 main /home/hadron/test.db
5、 創(chuàng)建數(shù)據(jù)表
sqlite> create table user(id,username,password);
6、 插入數(shù)據(jù)
sqlite> insert into user(id,username,password) values(1,'abc','123');
7、 查詢數(shù)據(jù)
sqlite> select * from user;
1|abc|123
8、 退出數(shù)據(jù)庫
sqlite> .exit
9、 再次進(jìn)入數(shù)據(jù)庫
hadron@hadron ~ $ sqlite3
SQLite version 3.7.9 2011-11-01 00:52:41
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
10、安裝可視化工具:
hadron@hadron ~ $ sudo apt-get install sqlitebrowser
以上是“Ubuntu 12.04下SQLite數(shù)據(jù)庫怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!