4

我对 Android 上的 OrmLite 有一个小问题。

当我增加数据库版本时,该onUpgrade方法在我的 OrmLite Helper 中按预期调用。升级后,该onCreate方法被调用,我得到这个异常:

11-24 10:09:45.720: ERROR/AndroidConnectionSource(390): connection saved
    com.j256.ormlite.android.AndroidDatabaseConnection@44f0f478 is not the one
    being cleared com.j256.ormlite.android.AndroidDatabaseConnection@44f5d310

我不知道为什么清除的连接与保存的连接不同。

我还将我的数据库函数(插入...)放入 OrmLite Helper 类中。也许这可能是一个问题?!?

我的助手类的一个片段:

public class OrmLiteDBProvider extends OrmLiteSqliteOpenHelper
    implements IEntityProvider, IDBProvider {

//snip
@Override
public void onCreate(SQLiteDatabase db, ConnectionSource connectionSource) {
    try {
        Log.i(OrmLiteDBProvider.class.getName(), "Creating database and tables");
        TableUtils.createTable(connectionSource, OrgManaged.class);
    } catch (SQLException e) {
        Log.e(OrmLiteDBProvider.class.getName(),
            "Can't create database and tables", e);
        throw new RuntimeException(e);
    }
}
@Override
public void onUpgrade(SQLiteDatabase db, ConnectionSource connectionSource,
   int oldVersion, int newVersion) {
    try {
        Log.i(OrmLiteDBProvider.class.getName(),
            "Database version changed. Dropping database.");
        TableUtils.dropTable(connectionSource, OrgManaged.class, true);
        // after we drop the old databases, we create the new ones
        onCreate(db);
    } catch (SQLException e) {
        Log.e(OrmLiteDBProvider.class.getName(), "Can't drop databases", e);
        throw new RuntimeException(e);
    }
}

我认为这是我想念的简单的东西。

提前感谢您的努力。

4

1 回答 1

7

好的,我看到了问题,不幸的是,它也存在于示例程序中。在ORMLite帮助器类中,该onUpgrade方法应使用:

onCreate(db, connectionSource);

而不是调用子类的以下内容:

onCreate(db);

我已经在HelloAndroid已修复的示例程序中重现了这个问题。我还在OrmLiteSqliteOpenHelperORMLite 代码的 Android 端的基类中正确修复了这个问题。对不起这个问题。

于 2010-11-24T20:42:33.027 回答