We're working on an implementation of CallableStatement.
Here is how we see it:
CallableStatement only supports IN parameters and one OUT parameter which is
the return value (or ResultSet) of the function. If the user tries to register
an OUT parameter other than parameter 1, then an exception i
Hello,
I am part of a team that is working on implementing the CallableStatement
interface for JDBC. CallableStatement is used to call stored procedures.
However, postgresql does not implement stored procedures as such and uses
functions instead. As functions can only return a single value or a