简体   繁体   English

Connection.close()之后数据库仍在使用中

[英]Database still in use after Connection.close()

When I connect to a database (whose location is provided by a JFileChooser), I check if the database is outdated, and if necessary, try to delete it and replace it. 当我连接到数据库(其位置由JFileChooser提供)时,我检查数据库是否已过时,并在必要时尝试删除它并替换它。 The Error I get is the following: 我得到的错误如下:

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)

I use the following URL: 我使用以下网址:

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

Note that I always use Connection.close(), yet the database seems open until i close the program. 请注意,我始终使用Connection.close(),但在关闭程序之前,数据库似乎处于打开状态。 This is preventing me from updating the database, any suggestion on how to completely release the database resources? 这使我无法更新数据库,关于如何完全释放数据库资源的任何建议?

(System.gc won't work) (System.gc无法正常工作)

Closing a connection to the database doesnt mean that the datatbe will close and release its resources - like file handles. 断开与数据库的连接并不意味着datatbe将关闭并释放其资源-如文件句柄。 You would need to close the databse first. 您将需要先关闭数据库。

Moreover if you're running Derby embeded in your appliation - that it means that the database runs in the same JVM as your application. 此外,如果您正在应用程序中嵌入Derby,则意味着数据库与应用程序在同一JVM中运行。 In that case aybe this Shutting down by using the API will help you. 在这种情况下,通过使用API​​关机会为您提供帮助。

I have found the solution to my problem: 我找到了解决我问题的方法:

DriverManager.getConnection(URL+";shutdown=true");

Will shutdown the database! 将关闭数据库!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 即使在connection.close()调用之后,连接仍处于建立状态 - Connection is in established state even after connection.close() call 事务仍处于活动状态时无法关闭连接 connection.close() 上的异常 - Cannot close a connection while a transaction is still alive Exception on connection.close() 是Java垃圾收集器负责在connection.close()之后释放JMS连接吗? - Is the java Garbage collector responsible to release the JMS connection after connection.close() Java Connection.close 是否回滚? - Does Java Connection.close rollback? Spring Hibernate SessionUtils connection.close - Spring Hibernate SessionUtils connection.close 尝试/捕获/最后使用connection.close() - try/catch/finally with connection.close() DBCP连接池connection.close()是否返回到池的连接 - Does DBCP connection pool connection.close() return connection to pool Connection.close与PooledConnection.close - Connection.close vs. PooledConnection.close 哪个地方可以写connection.close()和preparestatement.close() - Which Place to write connection.close() and preparedstatement.close() RabbitMQ客户端挂在channel.close()和connection.close()中 - RabbitMQ client hanging up in channel.close() and connection.close()
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM