public static final String TABLE_COMMENTS = "comments";
public static final String COLUMN_ID = "_id";
public static final String COLUMN_COMMENT = "comment";
// Database creation sql statement
private static final String DATABASE_CREATE = "create table "
+ TABLE_COMMENTS + "(" + COLUMN_ID
+ " integer primary key autoincrement, " + COLUMN_COMMENT
+ " text not null);";
上記の行が何をしているのかを誰かが説明できますか?androidは初めてです。TABLE_COMMENTは作成中のテーブルの列ですか?なぜ「(」を使用したのですか?