使用servlet关闭db连接的问题

时间:2011-09-26 09:54:13

标签: java sql derby

我正在尝试使用tomcat运行我的应用程序,这是我第一次调试/运行应用程序时工作正常。但是当我第二次跑步时,我收到错误“XJ040”。

      "Failed to start database 'C:\Documents and Settings\vitaly87\.netbeans-     derby\articals' with class loader WebappClassLoader
         context: /WebApplication1
     delegate: false
        repositories:

我认为这个问题是因为关闭连接有问题。因为当我停止服务器时问题就会消失,直到第二次运行。

这里是代码:

      private Connection connect = null;
//private Statement  stmt = null;
private PreparedStatement preparedStatement = null;
private ResultSet resultSet = null;
     public  ArrayList<story> stories=new ArrayList<story>();
            void getStories(String  version) throws SQLException{

       try{

         Class.forName("org.apache.derby.jdbc.EmbeddedDriver");

          }catch(ClassNotFoundException e){
              System.out.println(e);
          }
            connect = DriverManager.getConnection( "jdbc:derby:C:\\Documents and Settings\\vitaly87\\.netbeans-derby\\articals", "admin", "admin");
         // statement = connect.createStatement();
              int  ArticlesId= Integer.parseInt(version);
          preparedStatement = connect.prepareStatement("SELECT * FROM admin.articles  where    id>"+ArticlesId+"");
              resultSet = preparedStatement.executeQuery();
          while (resultSet.next()) {
    stories.add(new      story(resultSet.getString("title"),resultSet.getString("date"),resultSet.getString("text")));
}
            close();
            }
            //close connection
private void close() {
    try {
        if (resultSet != null) {
            resultSet.close();
        }



        if (connect != null) {
            connect.close();
        }
    } catch (Exception e) {

    }

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

最终总是在

中关闭连接
connect = DriverManager.getConnection(...)

try
{
    // use connection
}
finally
{
    try
    {
        connect.close()
    }
    catch (SQLException e)
    {
        // log e
    }
}

在您的代码中,如果您在例如parseInt(version)或exequteQuery()

中有异常,则不会关闭连接

同样在你的情况下,我认为不需要关闭结果集,因为你正在关闭连接。

try {
    if (resultSet != null) {
        resultSet.close();
    }

    if (connect != null) {
        connect.close();
    }
} catch (Exception e) {

}

是有问题的,因为1.如果resultSet.close()抛出异常,则连接永远不会关闭.2。您将看不到此方法中引发的任何异常。我建议至少记录被捕获的异常。