I’m trying a stored procedure like that, with a custom query? (MSSQL)
Am I wrong? it’s possible do that?
any Ideas for me? thanks to everybody
Did you define the parameters with the same names?
Yes, of course
Is @p0 perhaps a parameter used within the Stored Procedure. The call looks correct, perhaps the Stored Procedure returned the error due to incorrect parameter values.
I’m calling a stored procedure successfully in my app - the only syntax difference I see is that I don’t have a space between the procedure name and the open parenthesis:
CALL bracket_generator(:P1)
It would be silly, but worth a quick test.
thank you @umadmin, but the problem remains even without space.