首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

android adb sqlite3的shell施用

2013-01-06 
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施用


热点排行