目前,我的sqlite版本与Android 2.2 froyo(三星galaxy ace)不兼容,并且遇到错误消息。请让我知道我需要为Android 2.2 froyo使用哪个sqlite版本。
private static class DatabaseHelper extends SQLiteOpenHelper {
DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
+ newVersion);
}
}
答案 0 :(得分:2)
使用模拟器:
3-1.5-Cupcake: 3.5.9
4-1.6-Donut: 3.5.9
7-2.1-Eclair: 3.5.9
8-2.2-Froyo: 3.6.22
9-2.3.1-Gingerbread: 3.6.22
10-2.3.3-Gingerbread: 3.6.22
11-3.0-Honeycomb: 3.7.4
12-3.1-Honeycomb: 3.7.4
13-3.2-Honeycomb: 3.7.4
从Here复制。