码迷,mamicode.com
首页 > 数据库 > 详细

sqlite

时间:2014-05-31 01:01:29      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:c   a   ext   int   name   type   

sqlite> .mode column
sqlite> .headers on

create table test (id interger primary key, value text);

select last_insert_rowid();

create index test_idx on test (value);

create view schema as select * from sqlite_master;

.exit

.tables

.indices test

.schema test

select type,name,tbl_name ,sql from sqlite_master order by type;

.dump

.output file.sql

.show

.read file.sql

.output file.csv

.separator ,

sqlite3 test.db .dump >test.sql

sqlite3 test2.db<test.sql

sqlite3 -init test.sql test3.db

sqlite,布布扣,bubuko.com

sqlite

标签:c   a   ext   int   name   type   

原文地址:http://www.cnblogs.com/anjsxz/p/3761943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!