2017-02-28 48 views
1

我有一個現有的數據庫,我從CSV轉換成.realm數據庫。 現在我需要在我的Android項目中調用它。 我得到有關模式的問題。在android中調用現有的領域數據庫?

我已經能夠達到領域文件,但它給了我以下的錯誤,這是與模型有關的東西。如果我只在域中調用deleteMigrationIfNeeded方法,那麼它運行出錯誤,但在這樣做,我得到空分貝。

java.lang.RuntimeException: Unable to create application android.search786.apkia.com.MyApplication: io.realm.exceptions.RealmMigrationNeededException: The 'AL_QURAN_TBL' class is missing from the schema for this Realm. 

任何幫助將不勝感激。 謝謝!

回答

0

錯誤說什麼是錯的:

The 'AL_QURAN_TBL' class is missing from the schema for this Realm. 

顯然,你有一個表,你的境界文件,但沒有corrosponding Java模型類。或者添加正確的字段或從文件中刪除它的遷移步驟。