私にとって初投稿。私は初めて 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);"
);
私はそれが両方の方法で行われるのを見てきました.コードが少ないよりも多い方が良い理由を理解しようとしています.
ありがとう!