Stored procedures
You can view stored procedures by selecting the item in the database form. Using the object menu you can create a new stored procedure, modify an existing or delete a procedure.
A stored procedure have input values and output values, you can return multiple rows of return values (selectable stored procedure) by calling the SUSPEND command, it's recommended to use it when returning a single row because the stored can be called as a dataset:
SELECT * FROM ASTOREDPROCEDURE
You can compile the stored procedure and execute it, the execution is done at ExecSQL window.
See also: