android adb sqlite3的shell施用

androidadb sqlite3的shell使用在数据库data中创建表tb,tb1,tb3,tb4.........建立库:sqlite3.exe data建

android adb sqlite3的shell使用

在数据库data中创建表tb,tb1,tb3,tb4.........

建立库:sqlite3.exe data;

建立表:create table tb(id int ,name vachar(5));

android  adb sqlite3的shell施用

显示表的结构

select *  from sqlite-master where type="table"  and name="tb";

显示所有结构: .schema ;

android  adb sqlite3的shell施用