| documentation/dbg-03-041.php
- The CALL statement invokes a procedure that was defined previously with CREATE PROCEDURE.
CALL sp_name([parameter[,...]])
Select procedure you want and right click on it. Click "Run..." menu item in contex menu.
- "Configure parameters" dialog box will apear.
- Set parameters and click OK when ready.
- To invoke a function that was defined previously with CREATE FUNCTION.
SELECT fn_name([parameter[,...]])
Select function you want and right click on it. Click "Run..." menu item in contex menu.
- "Configure parameters" dialog box will apear, as shown in Figure 1.
- Set parameters and click OK when ready.
 |