-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello ! Are you having troubles with using If you want a button that triggers a call, you can write two files: index.sqlselect 'button' as component;
select 'Go !' as title, 'call_proc.sql?x=1&y=2' as link; call_proc.sqlcall my_proc($x, $y);
select 'redirect' as component, '/' as link; |
Beta Was this translation helpful? Give feedback.
-
Thank you ! It works. |
Beta Was this translation helpful? Give feedback.
Hello ! Are you having troubles with using
CALL
statements ? They should work as well as other statements.If you want a button that triggers a call, you can write two files:
index.sql
call_proc.sql