My question is very much like http://stackoverflow.com/questions/1068974/getting-the-return-value-of-a-pl-sql-function-via-hibernate

I have a function which does some modifications internally and it returns a value.

The original idea was to do something like this:

protected Integer checkXXX(Long id, Long transId)
		throws Exception {
	final String sql = "SELECT MYSCHEMA.MYFUNC(" + id + ", "
			+ transId + ") FROM DUAL";
	final BigDecimal nr = (BigDecimal) this.getHibernateTemplate()
			.getSessionFactory().getCurrentSession().createSQLQuery(sql)
			.uniqueResult();
	return nr.intValue();
}

Unfortunately this doesn't work with Oracle. What is the recommended way to do something like this?

Is there a way to extract declared variables from within my statement?

link|improve this question

39% accept rate
feedback

3 Answers

up vote 13 down vote accepted

Hibernate Session provides a doWork() method that gives you direct access to java.sql.Connection. You can then create and use java.sql.CallableStatement to execute your function:

session.doWork(new Work() {
  public void execute(Connection connection) throws SQLException {
    CallableStatement call = connection.prepareCall("{ ? = call MYSCHEMA.MYFUNC(?,?) }");
    call.registerOutParameter( 1, Types.INTEGER ); // or whatever it is
    call.setLong(2, id);
    call.setLong(3, transId);
    call.execute();
    int result = call.getInt(1); // propagate this back to enclosing class
  }
});
link|improve this answer
would you mind to provide an example? I'm a bit lost how to get the result from the function. Do I need to use a out parameter? – Mauli Nov 9 '09 at 20:07
I've provided an example above. Depending on your function / stored procedure you may need to use the other invocation form within prepareCall() instead - CallableStatement documentation describes both. – ChssPly76 Nov 9 '09 at 20:20
@ChssPly76: I never knew of doWork(..) much better than Hibernate's @NamedNativeQuery which requires the sproc/function to return a refcursor as the first parameter (the out parameter). – non sequitor Nov 9 '09 at 23:57
great, it works fine now! – Mauli Nov 10 '09 at 10:22
@ChssPly76, as I noted below, I didn't copy your answer; I just wrote it at the same time. My post doesn't deserve a down vote. – Ladlestein Nov 16 '09 at 20:30
feedback

Yes, you do need to use an out parameter. If you use the doWork() method, you'd do something like this:

session.doWork(new Work() {
   public void execute(Connection conn) {
      CallableStatement stmt = conn.prepareCall("? = call <some function name>(?)");
      stmt.registerOutParameter(1, OracleTypes.INTEGER);
      stmt.setInt(2, <some value>);
      stmt.execute();
      Integer outputValue = stmt.getInt(1);
      // And then you'd do something with this outputValue
   }
});
link|improve this answer
This is an exact copy of my answer. – ChssPly76 Nov 9 '09 at 20:46
@ChssPly76: lol he's trying to steal your thunder – non sequitor Nov 9 '09 at 23:51
@ChssPly76, I wrote it at the same time as you, and after I posted it, yours was already there. Nor is it an exact copy, although of course it is quite similar, since the problem is pretty simple to begin with. It would be nice if you removed your down vote. – Ladlestein Nov 16 '09 at 20:26
1  
The commonly accepted etiquette on SO is to delete your answer if you see that there's another one just like it already unless they both were literally written at the same time. In this case there's a 16 minute difference between mine and yours. If you delete it now, rep lost due to down-vote will be restored to your account during the next rep recalc (they're usually done every 6 to 8 weeks). Down-vote can not be rescinded (it's too old) unless your answer is edited. – ChssPly76 Nov 16 '09 at 20:58
4  
Oh. Is it also commonly accepted etiquette to down-vote someone in those cases? – Ladlestein Nov 19 '09 at 7:58
feedback
public static void getThroHibConnTest() throws Exception {
    logger.debug("UsersActiion.getThroHibConnTest() | BEG ");
    Transaction tx = null;
    Connection conn = null;
    CallableStatement cs = null;
    Session session = HibernateUtil.getInstance().getCurrentSession();
    try {
        tx = session.beginTransaction();
        conn = session.connection();

        System.out.println("Connection = "+conn);
        if (cs == null)
        {
            cs = 
                conn.prepareCall("{ ?=call P_TEST.FN_GETSUM(?,?) }");
        }
        cs.clearParameters();
        cs.registerOutParameter(1,OracleTypes.INTEGER);
        cs.setInt(2,1);
        cs.setInt(3,2);
        cs.execute();
        int retInt=cs.getInt(1);
        tx.commit();            
    }catch (Exception ex) {  
        logger.error("UsersActiion.getThroHibConnTest() | ERROR | " , ex);  
        if (tx != null && tx.isActive()) {
            try {
                // Second try catch as the rollback could fail as well
                tx.rollback();
            } catch (HibernateException e1) {
                logger.debug("Error rolling back transaction");
            }
            // throw again the first exception
            throw ex;
        }
    }finally{
        try {
            if (cs != null) {
                cs.close();
                cs = null;
            }
            if(conn!=null)conn.close();

        } catch (Exception ex){;}
    }
    logger.debug("UsersActiion.getThroHibConnTest() | END ");
}
link|improve this answer
1  
the connection() method is deprecated in Hibernate 3.3.2GA+ – Stephan Apr 23 '11 at 7:52
Even connection() is deprecated. In those versions this is the way you can access. – takacsot Mar 29 at 8:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.