Tables and Views
1 minute to readThe first step in creating a web application is to create its data tables. Both Flex and Bridge frameworks share the same underlying data structure. This means that any data you create and build will be suitable for frameworks universally and with no migration issues.
Tables hold your data. You can create tables in the Tables area of your app. Data can be submitted into these tables using web forms or imported from external files, such as Excel. Tables can also be exported in various file formats and stored locally.
Views are created from one or more tables. You can use a view to filter the data of a table and/or include a subset of its base table. For example, if you have a table of all your global customers, you can create a view from that table to only display customers from a specific country. You can also create a view that consolidates data from multiple tables. For example, you can pull out customer records from one table and their orders from another table and show the data in a single view.
Read the following articles to learn more about tables and views: