Tab Manage Table Options is no longer available. Table Options was renamed to Project Templates and can now be accessed directly from the plugin menu.

Topics covered in this video #
- Change column labels
- Change column order
- Hide columns
- Use lookups
- Use tabs
Hi,
thanks for fabules work you share with us. I bought premium counting for more great features in the future 😉
I have a question regarding functions, procedures and views.
Is there any way to strore and exec procedures and fucntions in your plugin?
For example I would like to have procedure that add records (with random data) to multiple tables I have created at same time. Just for populating them.
Same for functions. Creating scalar functions would be useful for me.
And views. I like to have view with single row from many tables and use this view to build table on my site.
Is this all possible?
regards
Hi Zielony,
You can create and use database triggers, functions, procedures and views. You just have to do it manually.
You can for example create a procedure directly from the Data Explorer. Just create a SQL script file and click on button “Import data/Execute script(s)” to execute your script file.
Please keep in mind that you need to follow the plugin guidelines for your SQL script. Every SQL statement has to end with a ; and a new line. For procedures containing SQL statement in their body, just add a space behind the ;.
For example:
create procedure myproc()
begin
insert into mytable values(‘myvalue’);[make sure to add a space here]
end;
You can execute a procedure in the same way or from a filter or action hook.
Does this help?
Peter
Hello,
In that exemple, if I delete a department in the depatments table, does this depatment is deleted too in field department of the employee table ?
Hi François,
This depends on the table definitions. The user can use foreign key constraints to protect relationships. In that case it will not be possible to remove a child row if it still used in the parent table. But this is handle on DBMS level, not in our plugin.
Hope that helps! Let us know if you have other questions.