日期:2014-05-16  浏览次数:20350 次

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 ;