Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Data Records of a New Form
How many data records are inserted in Form Tools database, when a new form is added?
✍: FYIcenter.com
When a new form is added, you should see the following data records in Form Tools
database:
1. The primary data record for a new form is stored in the "ft_forms" table. You can get the data base back by the form_id:
select * from ft_forms where form_id = 6;
2. The following child data records are also stored to support the new form:
-- ft_form_fields defines what fields are used in the form select * from ft_form_fields where form_id = 6; -- ft_views defines what views are used for the form select * from ft_views where form_id = 6;
3. For each form field, the following child data records are stored:
-- ft_field_settings defines settings for each field select * from ft_field_settings where field_id in ( select field_id from ft_form_fields where form_id = 6 ); -- ft_field_validation defines validations for each field select * from ft_field_validation where field_id in ( select field_id from ft_form_fields where form_id = 6 );
4. For each form view, the following child data records are stored:
-- ft_view_columns defines columns for the view result list select * from ft_view_columns where view_id in ( select view_id from ft_views where form_id = 6 ); -- ft_view_fields defines fields for the view detail select * from ft_view_fields where view_id in ( select view_id from ft_views where form_id = 6 ); -- ft_view_tabs defines tabs for the view detail select * from ft_view_tabs where view_id in ( select view_id from ft_views where form_id = 6 );
4. The following child data records are used to control access permissions:
-- ft_client_forms defines form access per client select * from ft_client_forms where form_id = 6; -- ft_client_views defines view access per client select * from ft_client_views where view_id in ( select view_id from ft_views where form_id = 6 );
5. Actual form data records are stored in a standalone table for the new form:
select * from ft_form_6;
Â
⇠Understanding Form Tools Database
2019-11-08, ∼1966🔥, 0💬
Popular Posts:
How to log in to Microsoft Teams with a Web browser? I know that my company is using Microsoft Teams...
What is "Microsoft SharePoint Server Colleague Import Add-in" COM Add-in in Outlook 2013? Should I d...
What is the difference between a Web page and a filtered Web page? Word supports 2 Web page formats:...
Where to find answers to frequently asked questions about Fitbit devices? I want to understand more ...
How to resume file transfer in FileZilla FTP Client? I have unfinished file transfer entries in the ...