hi, i am getting an error with SC 9, before it worked.
I have a stored procedure in my DB called: sp_set_myproc
When i run my app SC show this:
Error:
PROCEDURE mydb.sp_set_ does not exist
CALL sp_set_(1, ‘S’, ‘N’, @_sql_vars)
The Line for this code is into a internal library.
my code line is:
sc_exec_sql(“CALL sp_set_myproc([var_global], ‘S’, ‘N’, @_sql_vars)”);
I can see SC Trim the procedure name to: sp_set_
I tried change the name for the procedure and SC Trim the name again.