Ubuntu 12.04下SQLite数据库怎么用

72次阅读
没有评论

共计 1002 个字符,预计需要花费 3 分钟才能阅读完成。

自动写代码机器人,免费开通

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

向 AI 问一下细节

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-02-04发表,共计1002字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)