我正在使用MySql,我的查询调用如下:
call SPGetChart (idNumber, nameChart);
答案 0 :(得分:2)
使用EntityManager
Query query=getEntityManager().
createNativeQuery("BEGIN SPGetChart(:id, :name); END;");
query.setParameter("id", idValue);
query.setParameter("name", nameChart);
query.executeUpdate();
通过EntityManager使用连接:
Connection con = ((SessionImpl) getEntityManager().getDelegate()).connection();
CallableStatement callableStatement = cc.prepareCall("{call SPGetChart (?,?)}");
callableStatement.setInt(1, idValue);
callableStatement.setString(2, nameChart);
callableStatement.execute();
使用会话:
Query query = session.createSQLQuery("CALL SPGetChart (:id, :name)")
.setParameter("id", idValue)
.setParameter("name", nameChart);
query.executeUpdate();
答案 1 :(得分:2)
我知道这是一个老问题,但对于现在发现这一点的人来说,EntityManager类现在支持存储过程。
StoredProcedureQuery query = getEntityManager().createStoredProcedureQuery("SPGetChart");
query.registerStoredProcedureParameter(1, Integer.class, ParameterMode.IN);
query.registerStoredProcedureParameter(2, String.class, ParameterMode.IN);
query.setParameter(1, idValue);
query.setParameter(2, nameChart);
query.execute();