1

当我在 SD 卡上导出数据库时,我使用

try {
    File sd = new File(Environment.getExternalStorageDirectory()+"/ABC");
                    File data = Environment.getDataDirectory();
                    boolean success = false;
                    if (!sd.exists()) {
                        success = sd.mkdir();
                    }
                    if (sd.canWrite()) {
                        String currentDBPath = "\\data\\com.example.skurat\\databases\\Income.db";
                        String backupDBPath = "Income.db";
                        File currentDB = new File(data, currentDBPath);
                        File backupDB = new File(sd, backupDBPath);

                        if (currentDB.exists() && success) {
                            FileChannel src = new FileInputStream(currentDB).getChannel();
                            FileChannel dst = new FileOutputStream(backupDB).getChannel();
                            dst.transferFrom(src, 0, src.size());
                            src.close();
                            dst.close();
                        }
                    }
                } catch (Exception e) {
                }

结果文件“Income.db”存储在 SD 卡上。

当我从 sd 卡导入新数据库时,我使用

File dbfile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() +"/ABC/Income.db" ); 
             String backupDBPath = "Income.db";
             File backupDB = new File(dbfile, backupDBPath);
            SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(dbfile, null);
            // toDoDBAdapter = new DBAdapter(this, "Income.db"); written in the "onCreate" method, working correctly
            toDoDBAdapter.dbHelper.onUpgrade(db, 1, 2);
            // refresh screen, working correctly
            populateTodoList();

并且数据库没有更新。为什么?我使用 API 7

ps

如果您知道在应用程序中从 sd 卡导入数据库的另一种方法,请告诉,谢谢

4

2 回答 2

1

你的代码不清楚。您实际上是否使用 SQLiteOpenHelper 的任何子类?如果是这样,您唯一要做的就是确保在帮助程序构造函数中提供正确的目标数据库版本,并且如果当前版本号和目标版本号不匹配,则打开的帮助程序将正确运行 onUpgrade。

于 2012-11-04T20:54:23.007 回答
0

没有导入数据库的代码。您的代码只是调用onUpgradeSD 卡上的数据库。

您必须将数据库文件复制回来,就像您为导出所做的那样。或者,您必须将该数据库中的记录复制到您的普通数据库中。

于 2012-11-05T08:19:23.140 回答