In MS SQL Server a stored procedure can return an integer value called a return code to indicate the execution status of a procedure.
Does Sequel support this?
The value returned from my_stored_proc.call() does not match the integer I am returning in SQL. Is there some other way to access this?
The response from Jeremy Evans on the Sequel Talk Google Group was:
“Getting the Return Value from JDBC MSSQL” describes how to do it from a Java perspective.
And, here is a (working) first stab at a Ruby implementation: