我从Java调用mysql存储过程,如下所示:
public void deleteMyProduct(final String country, final String someId) throws EntityDoesNotExistException {
getHibernateTemplate().execute(new HibernateCallback() {
public Object doInHibernate(final Session session) {
session.clear();
Connection con = session.connection();
try {
CallableStatement cst = con.prepareCall("{call deleteProduct( ?, ? )}");
cst.setString(1 , country);
cst.setString(2 , someId);
cst.execute();
cst.close();
}
catch(SQLException e){
logger.error("Error deleting product, someId: "+ someId, e);
}
return null;
}
});
未成功删除该产品;但是当我手动运行它时,确实如此。知道问题可能是什么?
P.S。存储过程非常大并且包含可识别的信息,因此我无权发布它。然而,它已经生产了一段时间,直到最近才停止工作。
答案 0 :(得分:1)
country
和someId
实际上是否正确?SQLException
说什么?Connection con = session.connection();
?Int
而不是String
)?