java - Connection.close()后数据库仍在使用

标签 java javadb

当我连接到数据库(其位置由 JFileChooser 提供)时,我会检查该数据库是否已过时,如有必要,请尝试删除它并替换它。 我得到的错误如下:

java.io.IOException: Unable to delete file: C:\Users\User\Documents\POS-Data\Tables\seg0\cd1.dat
at org.apache.commons.io.FileUtils.forceDelete(FileUtils.java:2279)
at org.apache.commons.io.FileUtils.cleanDirectory(FileUtils.java:1653)
at org.apache.commons.io.FileUtils.deleteDirectory(FileUtils.java:1535)
at org.apache.commons.io.FileUtils.forceDelete(FileUtils.java:2270)
at org.apache.commons.io.FileUtils.cleanDirectory(FileUtils.java:1653)
at org.apache.commons.io.FileUtils.deleteDirectory(FileUtils.java:1535)
at Admin.SendReceiveData.SendData(SendReceiveData.java:226)
at Admin.SendReceiveData.SendAllBActionPerformed(SendReceiveData.java:183)
at Admin.SendReceiveData.access$100(SendReceiveData.java:13)
at Admin.SendReceiveData$3.actionPerformed(SendReceiveData.java:151)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2346)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.Component.processMouseEvent(Component.java:6525)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3322)
at java.awt.Component.processEvent(Component.java:6290)
at java.awt.Container.processEvent(Container.java:2234)
at java.awt.Component.dispatchEventImpl(Component.java:4881)
at java.awt.Container.dispatchEventImpl(Container.java:2292)
at java.awt.Component.dispatchEvent(Component.java:4703)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
at java.awt.Container.dispatchEventImpl(Container.java:2278)
at java.awt.Window.dispatchEventImpl(Window.java:2739)
at java.awt.Component.dispatchEvent(Component.java:4703)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:702)
at java.awt.EventQueue$3.run(EventQueue.java:696)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
at java.awt.EventQueue$4.run(EventQueue.java:724)
at java.awt.EventQueue$4.run(EventQueue.java:722)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:721)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)

我使用以下网址:

String URL = "jdbc:derby:" + DestinationFile.getAbsolutePath() + "\\Tables;create=true;user=root;password=root";

请注意,我总是使用 Connection.close(),但数据库似乎处于打开状态,直到我关闭程序。这导致我无法更新数据库,关于如何完全释放数据库资源有什么建议吗?

(System.gc 不起作用)

最佳答案

关闭与数据库的连接并不意味着数据表将关闭并释放其资源 - 例如文件句柄。您需要先关闭数据库。

此外,如果您在应用程序中运行嵌入的 Derby - 这意味着数据库与您的应用程序在同一 JVM 中运行。在这种情况下,可能是这个 Shutting down by using the API会帮助你的。

关于java - Connection.close()后数据库仍在使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38038427/

相关文章:

java - Hibernate 没有给出任何错误

java - 如何在 Java 中获取当前日期/时间

java - 断言列表与 hamcrest 具有相同的对象失败

sql - JavaDB:在子查询中获取有序记录

java - 每次启动应用程序时,数据库内容都会被删除

sql - 在 Derby WHERE 子句中使用 timestampdiff

java - 如何将 xhtml 表单中的数据插入到 netbeans 中的 Java DB 中?

java - 从 java 调用一个 c++ 函数,该函数使用其他一些引用包含文件的函数

sql - 如果作者写了不止一篇文章,为什么这个SQL查询将文章的作者名返回NULL?

java - 如何在不锁定的情况下同步对象?