我正在使用这种数据库,在使用过后我试图关闭HSQLDB连接,但最后仍然打开。
代码:
//----This methods are in a specific connection class file
public static Connection conn = null;
public static Connection getConnection(){
try {
input = new FileInputStream("PathToMyPropertiesFile");
prop.load(input);
//The properties constants are correctly checked
Class.forName(prop.getProperty("DRIVER_HSQLDB"));
conn = DriverManager.getConnection(prop.getProperty("CONN_HSQLDB"));
}
catch(ClassNotFoundException | SQLException e) {
LOG.log(null,"Error: "+e);
}
catch (IOException ex) {
LOG.log(null,"FILE ERROR: "+ex);
}
finally {
if (input != null) {
try {
input.close();
} catch (Exception e) {
LOG.log(null,"CLOSE ERROR: "+e);
}
}
}
return conn;
}
public static boolean stopConn() {
try {
if(conn != null) {
conn.close();
System.err.println("\nCLOSE CONN\n"+conn);
return true;
}
}
catch (SQLException e) {
e.printStackTrace();
return false;
}
return false;
}
//========= the other class file with the methods to use the conneciton
public static boolean insertUser(String uName, String uEmail){
Connection con;
con = ConnectionDB.getConnection();
PreparedStatement ps = null;
try {
String consulta = "insert into USERS (\"NICK\",\"EMAIL\") VALUES(?,?);";
ps = con.prepareStatement(consulta);
System.err.println(ps);
ps.setString(1,uName);
ps.setString(2,uEmail);
System.err.println("\nASSIGNATION\n"+ps);
if(ps.executeUpdate() == 1) {
System.err.println("\nTRUE\n");
return true;
}
}
catch(SQLException e) {
e.printStackTrace();
}
finally {
try {
System.err.println("\nFINALLY\n"+ps);
if(ps != null) {
ps.close();
System.err.println("\nCLOSE PS\n"+ps);
}
if(con != null) {
con.close();
System.err.println("\nCLOSE CON\n"+con);
if(ConnectionDB.stopConn()) {
System.err.println("\nALL IS OK\n"+ConnectionDB.conn);
}
else {
System.err.println("\nMEEEEKKKK!!!\n"+ConnectionDB.conn);
}
}
}
}
return false;
}
控制台会给我这个结果,我不知道为什么从不关闭连接,因为我试图关闭它两次。如果有人有主意请告诉我。
org.hsqldb.jdbc.JDBCPreparedStatement@4501280b [sql = [插入用户(“ NICK”,“ EMAIL”)VALUES(?,?);],参数= [[null],[null]]] < / p>
分配 org.hsq这是我的cldb.jdbc.JDBCPreparedStatement@4501280b [sql = [插入用户(“ NICK”,“ EMAIL”)VALUES(?,?);],参数= [[extra],[extra@mail.com ]]]
是
最后 org.hsqldb.jdbc.JDBCPreparedStatement@4501280b [sql = [插入用户(“ NICK”,“ EMAIL”)VALUES(?,?);],参数= [[extra],[extra@mail.com]]]]
关闭PS org.hsqldb.jdbc.JDBCPreparedStatement@4501280b [关闭]
关闭联系人 org.hsqldb.jdbc.JDBCConnection@3e5b87f5
关闭CONN org.hsqldb.jdbc.JDBCConnection@3e5b87f5
一切正常 org.hsqldb.jdbc.JDBCConnection@3e5b87f5
答案 0 :(得分:0)
关闭JDBC连接不会关闭进程内数据库。这样,您就可以在应用程序运行时打开和关闭不同的连接。
您需要执行JDBC语句以关闭数据库。要执行的SQL语句是“ SHUTDOWN”。
可以将连接属性“ shutdown = true”添加到JDBC连接URL,以在与进程内数据库的最后一个连接关闭时强制快速关闭。但这主要对只读或测试数据库有用。完整的SHUTDOWN允许下次连接时快速打开数据库。
请参见指南http://hsqldb.org/doc/2.0/guide/running-chapt.html#rgc_inprocess