摘要: 所有的例子都是再ubuntu环境下,测试。1、使用命令 sqlite3 test.db 进入sqlite3 模式。2、.headers on 查询时显示字段名,经常与 .mode column合用 用于改善显示格式。3、create table test (id integer primary key , value text); 创建表 test ,注意凡是 sql语句 需要以‘;’结束。4、.table 命令显示 当前数据库中的所有表。5、.schema [table name] 可以得到 表或视图的定义(DDL)语句。6、.indices table_name 显示一个表的索引。7、.d 阅读全文
posted @ 2012-07-09 15:13 lipeil 阅读(265) 评论(0) 推荐(0) 编辑