RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
Ubuntu12.04下SQLite数据库怎么用

小编给大家分享一下Ubuntu 12.04下SQLite数据库怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

平果网站建设公司成都创新互联公司,平果网站设计制作,有大型网站制作公司丰富经验。已为平果1000多家提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的平果做网站的公司定做!

在Ubuntu 12.04下进行SQLite开发简单实例如下:

1、 安装SQLite3

hadron@hadron ~ $ sudo apt-get install sqlite sqlite3

2、 查看版本号

hadron@hadron ~ $ sqlite3 -version

3、 创建test数据库

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、 查看数据库

sqlite> .database

seq  name             file

---  ---------------  ----------------------------------------------------------

0    main             /home/hadron/test.db

5、 创建数据表

sqlite> create table user(id,username,password);

6、 插入数据

sqlite> insert into user(id,username,password) values(1,'abc','123');

7、 查询数据

sqlite> select * from user;

1|abc|123

8、 退出数据库

sqlite> .exit

9、 再次进入数据库

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数据库怎么用 

Ubuntu 12.04下SQLite数据库怎么用

以上是“Ubuntu 12.04下SQLite数据库怎么用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!


文章题目:Ubuntu12.04下SQLite数据库怎么用
文章路径:http://scyingshan.cn/article/jcojid.html