给我的第一篇文章。我是第一次涉足 Android 开发,Java 编程经验有限。关于我的问题...
在 dbHelper 类中创建多个表时,首选哪种方法?
初始化变量以保存创建字符串...
private static final String DATABASE_CREATE =
"create table notes (_id integer primary key autoincrement, "+
"title text not null, body text not null);";
db.execSQL(DATABASE_CREATE);
要不就...
db.execSQL("create table notes (_id integer primary key autoincrement, "+
"title text not null, body text not null);"
);
我已经看到它以两种方式完成,我试图理解为什么更多的代码会比更少的代码更好。
谢谢!