android adb sqlite3的shell使用
在数据库data中创建表tb,tb1,tb3,tb4.........
建立库:sqlite3.exe data;
建立表:create table tb(id int ,name vachar(5));

显示表的结构
select * from sqlite-master where type="table" and name="tb";
显示所有结构: .schema ;

发布时间: 2013-01-06 15:44:47 作者: rapoo
android adb sqlite3的shell使用
在数据库data中创建表tb,tb1,tb3,tb4.........
建立库:sqlite3.exe data;
建立表:create table tb(id int ,name vachar(5));

显示表的结构
select * from sqlite-master where type="table" and name="tb";
显示所有结构: .schema ;
