Ubuntu 12.04下SQLite数据库简单应用

Ubuntu 12.04下SQLite数据库简单应用

SQLite,是一款轻型的数据库,实现了多数的SQL-92标准,包括事务,就是代表原子性、一致性、隔离性和持久性的(ACID),触发器和多数的复杂查询。SQLite数据库是Android平台软件开发必备数据库产品! 在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