Oracle
 sql >> Database >  >> RDS >> Oracle

Ibernazione:come chiamare una funzione memorizzata che restituisce un varchar?

Per ulteriori riferimenti, ecco la mia soluzione finale:

CallableStatement statement = session.connection().prepareCall(
        "{ ? = call Transferlocation_Fix(?) }");
statement.registerOutParameter(1, Types.VARCHAR);
statement.setString(2, "FC3");
statement.execute();
String result = statement.getString(1);