• Is there a way to get the value ( i.e. @rtn_cd) of the OUT varialbe in mysql stored procedure in MSSQL like the following ?

    EXEC('CALL usp_test(@rtn_cd)' ) AT MYSQLLOCALHOST

    If mysql procedure is created like this:

    create procedure usp_test(OUT return_code int)

    begin

    ..

    end;

    Thanks in advance.