| Target
| Selects the type of applications that will be generated by the system. Currently only 'Java-GUI'
applications are supported.
|
| RDBMS
| Specifies the host Database system to be used, only Postgres95 is supported at this
time.
|
| Database Host
| Is the full hostname of the database server, this will be hardcoded in the
target applications.
|
| Database Port
| The port number which the database server is using. This is usually 5432 for postgres.
|
| Database Name
| The name of the database containing the data files used by the application.
|
| Author
| The author's name to be commented in the generated source code.
|
| Projects Directory
| Directory containing the users project files.
|
| Target Directory
| Where the generated applications will be deposited.
|
| Field Name
| The postgres compatible field identifier.
|
| Field Description
| The descriptive name of the field that will appear on data entry forms.
|
| Type
| This is the data type of the field, it can be char, int, float, date or text.
The Text type corresponds to the postgres varchar and will create a multiline
freeform text area on the form.
|
| Length
| The length of the field, only applicable for the char type, but
also specifies the length of the text field on the form so should be
set to 10 for dates, 8 for numbers etc.
|
| Pk - Primary Key
| Indicates whether the field is to be considered as part of the primary key.
The primary key is unique and the form will prevent duplicate entries into the table. A primary key may
include several fields. Every table must have a primary key.
|
| Fk - Foreign Key
| Indicates whether the field is a foreign key i.e. relates to a primary key of another
table. This is important for maintaining referential integrity between tables.
Enabling the foreign key field will create a dialog requesting information concerning
the relationship (see below).
|