The setup framework
n A setup framework executes scripts which describe the
database using descriptive names for types of data
elements.  The framework creates the tables in a SQL
database.  A sample script excerpt follows:
. . .
Create Table "Teacher_",+_
 "Last_Name       Name,"+_
 "First_Name      Name,"+_
 "Middle_Name     Name,"+_
 "Street_Address1 Long,"+_
 "City_           Long,"+_
 "State__lookup_  2char,"+_
 "Zip_Code        ID,"+_
 . . .