db.execsql("create table mytable ("
+ "scores int,"
+ ");");
}
或这个:
db.execsql("create table mytable ("
+ "scores INTEGER,"
+ ");");
}
或者它是同一个东西,只是不同的语法?
最佳答案