我的情况是数据库被锁定在语句中:
pst = conn.prepareStatement(cIQuery);
where pst
is PreparedStatement
object and conn
is the Connection
object andcIQuery
是要执行的查询。但是,我在使用后关闭了每个类中的所有Connection
,ResultSet
和PreparedStatement
对象。我该如何克服这个问题?
我的情况是数据库被锁定在语句中:
pst = conn.prepareStatement(cIQuery);
where pst
is PreparedStatement
object and conn
is the Connection
object andcIQuery
是要执行的查询。但是,我在使用后关闭了每个类中的所有Connection
,ResultSet
和PreparedStatement
对象。我该如何克服这个问题?