execSQL语句不执行
public void onCreate(SQLiteDatabase db) {
Log.i("tag","-----onCreate-----");
db.execSQL("CREATE TABLE if not exists thing(id Integer primary key,name Text,price Integer)");//执行sql语句
}


创建数据库成功,但是数据库中没有表
public void onCreate(SQLiteDatabase db) {
Log.i("tag","-----onCreate-----");
db.execSQL("CREATE TABLE if not exists thing(id Integer primary key,name Text,price Integer)");//执行sql语句
}


创建数据库成功,但是数据库中没有表
2018-08-25
举报