我在我的节目中将记忆漏掉了部分地方,我认为,这是我守则中的位置。 因此,这一职能是否是错误的,储存程序如何被称作?
CustomSQLConn
is given to the class when it is created.
private void flagDeleted(ABCDocument mydoc){
try {
ResultSet rs1 = null;
try{
CallableStatement cs1;
cs1 = CustomSQLConn.prepareCall("{ call flagFolderDeleted(?) }");
cs1.setInt(1, mydoc.getId());
cs1.execute();
}catch (Exception e){
System.out.println("Got an exception: " + e.getMessage());
e.printStackTrace();
}finally{
if(rs1 != null) rs1.close();
rs1 = null;
}
}catch (Exception e) {
System.out.println("Got an exception: " + e.getMessage());
e.printStackTrace();
}
} // END flagDeleted
由于这一类人利用这一联系进行其他工作,因此也没有在此关闭。