- 论坛徽章:
- 0
|
1 sqlite3常用数据库操作sqlite3支持大部分的sql语句
创建一个包含一个表"tb11"名字为"ex1"的SQLite数据库,并修改。
$sqlite3 ex1
SQLite version 3.3.17
Enter ".help" for instructions
sqlite> create table tbl1(one varchar(10), two smallint);
sqlite> insert into tbl1 values('hello!', 10);
sqlite> insert into tbl1 values('goodbye', 20);
sqlite> update tbl1 set one='hi' where one='hello';
sqlite> delete from tbl1 where two = 20;
sqlite> select * from tbl1;
hi|10
2 sqlite3的特殊命令a 查询SQLITE_MASTER表
SQLite数据库的框架被保存在一个名叫"sqlite_master"的特殊的表中。可以像查询其它表一样通过执行“SELECT”查询这个特殊的表
b 在shell下直接执行命令:
sqlite3 film.db "select * from film;"
c 输出 HTML 表格:
sqlite3 -html film.db "select * from film;"
d 将数据库「倒出来」:
sqlite3 film.db ".dump" > output.sql
e 利用输出的资料,建立数据库(加上以上指令,就是标准的SQL数据库备份了):
sqlite3 film.db "命令。
h事务操作:
begin;
...
commit;
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/60303/showart_2099918.html |
|