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, 1630🔥, 0💬
Popular Posts:
Why the "dir" command hangs when using the FTP command-line tool on Windows? when you run the "dir" ...
Why I am getting the "FTP over TLS is not enabled, users cannot securely log in" waring on my FileZi...
How to join a team in Microsoft Teams? My manager told me we are using Microsoft Teams service. In o...
How to use MomoCast with Safari on iPhone and iPad to cast Website and video to Chromecast on TV? If...
Why I am getting an error message dialog box when I try to save my PowerPoint presentation with some...