I'm using the XS Procedures library to call a stored procedure with table input and output parameters (following the Developer Guide and the API reference). The resulting JSON contains the correct result.
However, inside the stored procedure, I have an INSERT statement into a physical table within my schema - no error is thrown during the execution, but also, no changes to the table are made. When I call the stored procedure from within the SQL console, the inserts are done correctly.
Q: What am I doing wrong, is it actually possible/reasonible to use INSERT/UPDATE statements to physical tables inside a stored procedure using the XS Procedures lib - or are all modifications only applied temporarily on the schema which is set before the procedure call?