I code like below, but I can't get the value. I had tested my stored procedure, it can return value, but not in PB.
Please help!
Sam.
string ls_output=''
DECLARE xp_get_user PROCEDURE FOR xp_get_user @@username=:ls_output output
using sqlca;
execute xp_get_user;
messagebox('ls_output',ls_output)
Sam.
Please help!
Sam.
string ls_output=''
DECLARE xp_get_user PROCEDURE FOR xp_get_user @@username=:ls_output output
using sqlca;
execute xp_get_user;
messagebox('ls_output',ls_output)
Sam.