I'm using MySql and my query to call is like:
call SPGetChart (idNumber, nameChart);
Using EntityManager
Query query=getEntityManager().
createNativeQuery("BEGIN SPGetChart(:id, :name); END;");
query.setParameter("id", idValue);
query.setParameter("name", nameChart);
query.executeUpdate();
Using connection through EntityManager:
Connection con = ((SessionImpl) getEntityManager().getDelegate()).connection();
CallableStatement callableStatement = cc.prepareCall("{call SPGetChart (?,?)}");
callableStatement.setInt(1, idValue);
callableStatement.setString(2, nameChart);
callableStatement.execute();
Using Session:
Query query = session.createSQLQuery("CALL SPGetChart (:id, :name)")
.setParameter("id", idValue)
.setParameter("name", nameChart);
query.executeUpdate();