So, I'm trying to get the value from an output parameter in Oracle, but I just can't seem to make it work. In a database client, the query would look something like this: DECLARE my_output_var NUMBER; ...
Expected result: ExecContext succeeds. The driver binds P_OUT as an output parameter (ODBC SQL_PARAM_OUTPUT or SQL_PARAM_INPUT_OUTPUT), executes the procedure, and writes the returned value into out.
This should be simple, but I'm a bit confused by these two.<br><br>As I understand it your stored procedure can have 3 values/paramater types:<br>Input paramters (which are obviously what you pass in, ...