gpt4 book ai didi

java - 在 Java 中将 sqlite 从磁盘备份和恢复到内存

转载 作者:IT王子 更新时间:2023-10-29 06:24:33 28 4
gpt4 key购买 nike

我正在尝试将 sqlite 文件读入内存以获得更好的性能,当关闭我的应用程序时我想将它写回硬盘。

我在 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 数据库),this._conn 是打开的,但是如果我想在上面执行语句,似乎里面没有表也没有数据。它似乎没有恢复任何东西。

关于如何进一步解决/调试的任何建议?

(顺便说一句 - 如果我在我的连接上使用 stat.executeUpdate("backup to test.db"),它会备份我的空 :memory: db...)

最佳答案

看起来你遗漏了两件事:

  1. 文件名两边的引号。
  2. stat.close

尝试以下操作:

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() + "'");
stat.close();
}

这是我让它与 Xerial SQLite JDBC 版本 3.7.15-M1 一起工作的唯一方法。在这种情况下,我认为版本并不重要。

关于java - 在 Java 中将 sqlite 从磁盘备份和恢复到内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17548026/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com