红联Linux门户
Linux帮助

SQLite Tutorial 1在ubuntu上安装SQLite 3.8.2

发布时间:2015-12-13 15:42:45来源:linux网站作者:seamanj

1.输入

sudo apt-get install sqlite3 libsqlite3-dev 


2.安装完后,会提示这样

SQLite Tutorial 1在ubuntu上安装SQLite 3.8.2


3.然后我们可以进行一些简单的操作

退出   sqlite> .quit

创建数据库   seamanj@seamanj-Lenovo-IdeaPad-Y400:~$ sqlite3 company.db

创建表格 sqlite> create table employee(empid integer, name varchar(20), title varchar(20));

插入数据 insert into emplyee values(101, 'John Smith', 'CEO');

进行查询 sqlite> select * from employee;

查看数据库 sqlite> .database

查看表格 sqlite> .table


Ubuntu 15.04安装配置Qt+SQLite3:http://www.linuxdiyf.com/linux/15877.html

ubuntu上安装和使用sqlite数据库:http://www.linuxdiyf.com/linux/15272.html

Ubuntu环境:sqlite3在mini2440上的移植:http://www.linuxdiyf.com/linux/11300.html

Linux查看SQLite的表结构:http://www.linuxdiyf.com/linux/8834.html

Linux PHP开启对Sqlite的支持:http://www.linuxdiyf.com/linux/6223.html