我实际上正在开发一个使用 ORMLite 库的应用程序(顺便说一句,这很棒),但我是使用它的初学者。
我对设备内部数据库的更新有疑问。
假设有人在 Google Play 上下载了我的应用程序。几个月后,我肯定会用新条目填充一些表格。
当这个人正在更新应用程序时,我怎样才能用我的新条目更新数据库并将旧条目保留在其中。
更清楚地说,假设用户在我的应用程序中回答了问题。当我将介绍新问题时,当他更新我的应用程序并保留已经回答的问题时,我如何将它们插入数据库?
当这个人正在更新应用程序时,我怎样才能用我的新条目更新数据库并将旧条目保留在其中。
这个想法是使用传递给onUpgrade(...)
方法的版本号。使用ORMLite,该OrmLiteSqliteOpenHelper.onUpgrade(...)
方法需要一个oldVersion
和newVersion
数字。然后,您可以将转换代码写入能够从旧格式转换数据并更新架构的应用程序。
有关更多信息,请参阅有关升级架构的 ORMLite 文档。
引用,您可以执行以下操作:
if (oldVersion < 2) {
// we added the age column in version 2
dao.executeRaw("ALTER TABLE `account` ADD COLUMN age INTEGER;");
}
if (oldVersion < 3) {
// we added the weight column in version 3
dao.executeRaw("ALTER TABLE `account` ADD COLUMN weight INTEGER;");
}
如果您有需要转换的现有数据,那么您应该尽可能在 SQL 中进行转换。
另一种选择是拥有一个Account
实体和一个OldAccount
指向相同表名的实体。然后您可以使用 读取OldAccount
实体oldAccountDao
,将它们转换为Account
实体,然后使用accountDao
返回将它们更新到同一个表。您需要注意这里的对象缓存。
我这样做:
@Override
public void onUpgrade(SQLiteDatabase database, ConnectionSource connectionSource, int oldVersion, int newVersion) {
switch (oldVersion) {
case 1:
updateFromVersion1(database, connectionSource, oldVersion, newVersion);
break;
case 2:
updateFromVersion2(database, connectionSource, oldVersion, newVersion);
break;
default:
// no updates needed
break;
}
}
private void updateFromVersion1(SQLiteDatabase database, ConnectionSource connectionSource, int oldVersion, int newVersion) {
// do some stuff here
onUpgrade(database, connectionSource, oldVersion + 1, newVersion);
}
private void updateFromVersion2(SQLiteDatabase database, ConnectionSource connectionSource, int oldVersion, int newVersion) {
// do some stuff here
onUpgrade(database, connectionSource, oldVersion + 1, newVersion);
}
这将独立于他即将到来的数据库版本增量更新用户数据库。
资料很少,不清楚你的表结构是否有变化。
a)如果不改变数据库结构。
1 在程序的新版本中,当您开始使用当前版本检查以前保存的版本(例如在首选项中)时(参见 PackageManager.getPackageInfo)
已保存 = 0 - 用户刚刚安装了新版本
已保存 < 当前 - 用户更新您的程序
2 将新数据添加到数据库
3 保存当前版本的首选项
b)如果表结构发生了变化(添加或删除字段)
1 增加数据库的版本号(请参阅您的扩展 OrmLiteSqliteOpenHelper 类)
2 当用户第一次运行您的程序时,将调用方法“onUpgrade”(在您的扩展 OrmLiteSqliteOpenHelper 类中),该方法将转移到新旧版本号。
我不喜欢在每次升级时删除数据库,或者在添加每个字段后编写更新代码,所以......
我正在尝试这样做:
@Override
public void onUpgrade(SQLiteDatabase database, ConnectionSource connectionSource, int oldVersion, int newVersion) {
ArrayList<String> tableNames = getTableNames(database);
for (Class clazz : daoClasses) {
try {
Annotation annotation = clazz.getAnnotation(DatabaseTable.class);
if (annotation != null && annotation instanceof DatabaseTable) {
String tableName = ((DatabaseTable) annotation).tableName();
if (tableName.isEmpty()) {
tableName = clazz.getSimpleName().substring(0, 1).toLowerCase() + clazz.getSimpleName().substring(1);
}
if(!tableNames.contains(tableName)){
TableUtils.createTable(connectionSource, clazz);
} else {
addColumns(database, tableName, clazz);
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
private ArrayList<String> getTableNames(SQLiteDatabase database){
ArrayList<String> tableNames = new ArrayList<>();
Cursor cursor = database.rawQuery("SELECT name FROM sqlite_master WHERE type='table'", null);
if (cursor.moveToFirst()) {
while ( !cursor.isAfterLast() ) {
tableNames.add(cursor.getString(0));
cursor.moveToNext();
}
}
cursor.close();
return tableNames;
}
private void addColumns(SQLiteDatabase database, String tableName, Class clazz){
Cursor mCursor = database.rawQuery("SELECT * FROM " + tableName + " LIMIT 0", null);
for (Field field : clazz.getDeclaredFields()) {
try {
DatabaseField annotationField = field.getAnnotation(DatabaseField.class);
if (annotationField != null && !annotationField.foreign()){
String columnName = field.getName();
boolean hasColumn = mCursor.getColumnIndex(columnName) != -1;
if (!hasColumn) {
String columnType = field.getType().getSimpleName();
if(columnType.equals(String.class.getSimpleName())){
columnType = "TEXT";
} else {
columnType = columnType.toUpperCase();
}
database.execSQL(MessageFormat.format("ALTER TABLE `{0}` ADD COLUMN {1} {2};", tableName, columnName, columnType));
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
mCursor.close();
}
我希望这段代码可以更好。
在这里,我不会删除从 dao 中删除的旧表和列,也不会创建外部字段(我不确定是否需要它)。