温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Ubuntu 12.04下SQLite数据库怎么用

发布时间:2021-10-25 10:59:05 来源:亿速云 阅读:190 作者:小新 栏目:系统运维

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

在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数据库怎么用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI