I want to replace old base to an new one from specific path. Should i remove old version an just copy new file? It works but app apply new base just after i clear cash or reboot device. Why so? Or i should use dbHelper.onUpgrade()
? Probably its better. But i cant set arguments to onUpgrade()
because it requires SQLiteDatabase
as param, i have file path to db so how i can set necessary argument? It should look something like this:
downloadDbPath = file.getPath();
sql = new SQLiteDatabase().getPath(downloadDbPath);
dbHelper.onUpgrade(sql, 1, 2);
and i have an error for second line Error: SQLiteDatabase() is not public in SQLiteDatabase; cannot be accessed from outside package
So i cant create a new Object
Okay, if it interesting to somebody i did next: main method:
accessory:
Clean Cache: https://stackoverflow.com/a/23908638/4540861
<uses-permission android:name="android.permission.CLEAR_APP_CACHE"/>
Restart app: https://stackoverflow.com/a/17166729/4540861
FileChooser: https://rogerkeays.com/simple-android-file-chooser
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />