|
In short a Row Type is a the design of a table.
Whenever you create a table you must either re-use an existing Row Type or create a new one and give it a name. By default the interface assumes that you are creating a new Row type and gives it the name of the table with the 's' removed from the end if there is one.
For example if you create a table called 'Rooms' the system will create a new row type called 'Room'.
This system falls down for a table called 'People' but you can edit the row name to be anything you want.
A row type contains the list of column names and data types for the table. When you add a column to a table you are adding a column to the Row type.
The reason we bother with the whole concept of Row Types is that it gives us a way to refer to the design of a table so that it can be reused and also so that it can be referred to in calculations.
|