It's possible to use Stored Procedure with MSSQL?

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
yes

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.

I did some experiments. If I use the syntax “EXEC” I can write in the table.
But doing “execute query” it seems that the procedure does not end (if I check the table, the data has been written)


How can see where is the problem? From the browser console I do not seem to see anything abnormal