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, 1223🔥, 0💬
Popular Posts:
What browser to use to cast Website and video to Chromecast devices on my iPhone and iPad? On your i...
What is "OneNote Linked Notes Add-in" in Microsoft Word? Should I disable it? "OneNote Linked Notes ...
What is "OneNote Linked Notes Add-in" in Microsoft Word? Should I disable it? "OneNote Linked Notes ...
What is Microsoft Teams? Microsoft Teams is a Microsoft cloud service that combines workplace chat, ...
How to add page number in the footer area of each page in Microsoft Word? The quickest way to add pa...