Appendix 7. SQL queries with bound variables[3.1.4]
Parser's Oracle SQL driver can work with bound variables. IN, OUT and IN/OUT variables are supported, they are bound to hash you pass to query.
There are known problems with CALL and EXECUTE constructs in Oracle versions, we recommend using PL/SQL wrapper (begin …; end;), do not forget to escape «;» character.
Note: values of void type correspond to NULL. In second example below days is initially NULL.
Example of using IN variables
#procedure ban_user(user_id in number, daysin number)