Llamar a una función PL/SQL desde java 0
Mar19
1: //Recibe como parámetro un String y retorna un String
2:
3: private String ExtraerFuncion(String usercode) throws SQLException, Exception, Error{
4:
5: String sql = “”, dato=”";
6: sql = “{? = call FN_RETURN_FUNCION(?)}”;
7: CallableStatement cs = null;