Oracle
 sql >> Base de données >  >> RDS >> Oracle

Comment appeler une fonction Oracle depuis Hibernate avec un paramètre de retour ?

Hibernate Session fournit un doWork() méthode qui vous donne un accès direct à java.sql.Connection . Vous pouvez ensuite créer et utiliser java.sql.CallableStatement pour exécuter votre fonction :

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
  }
});