我正在尝试将 sqlite-File 读入内存以获得更好的性能,当关闭我的应用程序时,我想将其写回硬盘。
我在 Java 中使用jdbc (3.7.2) 驱动程序。
根据文档,我的代码看起来像
this._conn = DriverManager.getConnection("jdbc:sqlite:");
Statement stat = this._conn.createStatement();
File dbFile = new File(this._config.GetDataBaseFile());
if (dbFile.exists()) {
this._logger.AddInfo("File exists.");
stat.executeUpdate("restore from " + dbFile.getAbsolutePath());
}
该文件存在(并且它是一个有效的sqlite db),this._conn
是打开的,但是如果我想在它上面执行语句,看起来里面没有表也没有数据。它似乎没有恢复任何东西。
关于如何进一步解决/调试的任何建议?
(顺便说一句 - 如果我stat.executeUpdate("backup to test.db")
在我的连接上使用,它会备份我的空 :memory: db ...)