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, 1795🔥, 0💬
Popular Posts:
How to use my iPhone and iPad to set up and manage Chromecast device on my TV? I have a Chromecast d...
How to fix the Microphone Permissions error with making a call with Messenger in iPhone? If your Mic...
Why am I getting the "You now have two copies of a file" error from OneDrive for Windows? You will g...
How to add slide numbers and copyright in the footer area? You can add slide numbers, copyright text...
What is a PowerPoint Template (.potx) File? What is the difference between .potx and .pptx files? A ...