私は:
public void onCreate(SQLiteDatabase db) {
String sql=String.format(
"create table %s"+"(%s int primary key, %s int, %s text, %s int, %s text)",
TABLE, Column_ID, Column_Descreption, Column_Price, Column_Photo_URL);
db.execSQL(sql);
}
私の質問は: intとtext以外に追加の型はありますか? boolean と double を格納する必要があるためです。