mini2440上SQLite操作

(1)创建数据库文件test.db
[root@mini2440 /]#cd /home/www
#sqlite3 test.db
SQLite version 3.7.7.1 2011-06-28 17:39:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

(2)创建表
sqlite> create table students(id integer,name text,age integer);
sqlite> .tables
students
sqlite>

(3)删除表
sqlite> drop table students
sqlite> .tables
sqlite>

(4)查看表结构
sqlite> create table students(id integer,age integer);
sqlite> .schema students
CREATE TABLE students(id integer,age integer);
sqlite>

(5)插入列
sqlite> alter table students add cul;
sqlite> alter table students add column sex text;
sqlite> .schema students
CREATE TABLE students(id integer,age integer,cul,sex text);
sqlite>

(6)插入表记录
sqlite> insert into students values(1,'aa',10,'m');
sqlite> insert into students values(2,'bb',11,1,'f');
sqlite> select * from students;
1|aa|10|0|m
2|bb|11|1|f
sqlite>

(7)重命名表
sqlite> alter table students rename to stu;
sqlite>

(8)删除某一列,这为列cul
sqlite> begin transaction;
sqlite> create temporary table stu_bak(id integer,sex text);
sqlite> insert into stu_bak select id,name,age,sex from stu;
sqlite> drop table stu;
sqlite> create table stu(id integer,sex text);
sqlite> insert into stu select id,sex from stu_bak;
sqlite> drop table stu_bak;
sqlite> select * from stu;
1|aa|10|m
2|bb|11|f
sqlite> commit;
sqlite>

(9)退出程序
sqlite> .quit
[root@mini2440 www]#

本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2012-02/54689.htm

相关文章

SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能