https://issues.apache.org/bugzilla/show_bug.cgi?id=57266
--- Comment #5 from Andrea Coloru <[email protected]> --- Hi The driver is proprietary for the system. Unfortunately I cannot tell you more info because of my firm security policies. what can i do is to show you a sample code that we use to call stored procedures with the driver: CallableStatement statement = null; statement = connection.prepareCall("{call procedure_name(?,?,?)}"); statement.setString(1, (String) "paramin"); statement.setString(2, (String) "paramin2"); statement.registerOutParameter(3, Types.VARCHAR); Resultset resultSet = statement.executeQuery(); As You can see there is nothing special except the executeQuery in place of execute. Regards -- You are receiving this mail because: You are the assignee for the bug.
