1

我收到“java.sql.SQLException:[SQLITE_MISUSE] 库使用不正确(内存不足)”。我为我的数据库连接对象粘贴代码示例

public class DBhandler {
   private String DBUrl="d:\\sqlitedb\\somdb.db";
   private String driverName="org.sqlite.JDBC";
   private String jdbc="jdbc:sqlite:";
   private Connection con=null;
   private Statement stmnt=null;

  public DBhandler() 
  {
        try {
            Class.forName(this.driverName);
        } catch (ClassNotFoundException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

            try {
                this.con=DriverManager.getConnection(this.jdbc+this.DBUrl);
                this.stmnt=con.createStatement();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

  }

   public CurrentActiveSom getCurrentActiveSom()
 {

     CurrentActiveSom cas=null;
     String query="select * from current_active_som where active=1"; 
    ResultSet rs=null;

     try {
        rs=this.stmnt.executeQuery(query);
    if (rs.next())
    {
        cas= new CurrentActiveSom();
        cas.setMonth(rs.getString("month"));
        cas.setYear(rs.getString("year"));
        cas.setIsActive(rs.getInt("active"));

    }

    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

     finally
     {
         try {
            rs.close();
            this.stmnt.close();
             this.con.close();
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

     }
     return cas;
 }

 public CurrentActiveSom getIsDoneSom(String month,String year)
 {

     CurrentActiveSom cas=null;
     String query="select * from current_active_som where month='"+month+"' and year='"+year+"' and active=0"; 

    ResultSet rs=null;


     try {

             rs=this.stmnt.executeQuery(query); //this is exception line
        }

        if (rs.next())
        {
            cas= new CurrentActiveSom();
            cas.setMonth(rs.getString("month"));
            cas.setYear(rs.getString("year"));
            cas.setIsActive(rs.getInt("active"));

        }


     } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
     }

     finally
     {
         try {
            //rs.close(); //if i uncomment this gets null pointer exception 
            this.stmnt.close();
             this.con.close();
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

     }
     return cas;
 }

使用相同的 DBhandler 对象调用这两个方法,例如

 DBhandler db=new DBhandler();
 CurrentActiveSom cas1=db.getCurrentActiveSom();
 CurrentActiveSom cas2=db.getIsDoneSom(String month,String year)

然后我得到上述异常,

但是如果我们用不同的对象 DBhandler 调用这 2 个方法,比如

   DBhandler db1=new DBhandler();
   DBhandler db2=new DBhandler();
   CurrentActiveSom cas1=db1.getCurrentActiveSom();
   CurrentActiveSom cas2=db2.getIsDoneSom(String month,String year)

然后代码工作正常。

这是因为同步问题,有连接吗?如何解决这个问题?

4

2 回答 2

1

好吧,“内存不足”错误看起来很奇怪,但一个明确的错误在于Connection每次程序运行(在构造函数中)创建一次,然后在每个数据访问方法中关闭它。

这段代码:

CurrentActiveSom cas1=db.getCurrentActiveSom();

关闭Connection,所以这段代码:

CurrentActiveSom cas2=db.getIsDoneSom(String month,String year)

试图从封闭的数据库中获取数据。如果您正在使用某种连接池,在这种连接池中关闭连接会将其返回到池中,这是可以的。但似乎您正在处理单个物理连接。

因此,在您完成从数据库获取数据后关闭它,而不是在每个数据访问方法中。

于 2012-09-13T16:45:03.783 回答
-1

在调用 `rs.next() 之前关闭连接,因此 ResultSet 尝试从已经关闭的连接中读取。

于 2016-05-01T22:01:57.990 回答