使用 ORMLite v 4.40,我尝试让我的应用程序运行,但它似乎忽略了 onCreate 函数
我的 DatabaseHelper 看起来像这样(片段样式)
public class ORMLiteHelper extends OrmLiteSqliteOpenHelper {
private Context databaseContext;
private static String DATABASE_NAME = "InVinoVeritas";
private static int DATABASE_VERSION = 1;
public ORMLiteHelper(Context context) {
super (context, DATABASE_NAME, null, DATABASE_VERSION);
Log.v("ORMLiteHelper", "Cosntructor");
...
@Override
public void onCreate(SQLiteDatabase database, ConnectionSource connectionSource) {
Log.v("DatabaseHelper", "onCreate");
...
@Override
public void onUpgrade(SQLiteDatabase database, ConnectionSource connectionSource, int oldVersion, int newVersion) {
Log.v("DatabaseHelper", "onUpgrade");
...
我的 MainActivity 调用 DatabaseHelper 描述:
public class MainActivity extends OrmLiteBaseActivity<ORMLiteHelper> {
我试过重新安装应用程序,升级数据库版本,没有任何效果。我确实看到了构造函数调用(包括拼写错误:-),但未调用 onCreate 和 onUpgrade 。
任何帮助表示赞赏
巴里