我有:
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还有其他类型吗?因为我需要存储布尔值和双精度值。