void=dbAppend(record: propertyList))
The function adds a record to the database. New values of the database items are defined in the parameter record. The table has to be opened using the functuion dbOpenTable.

Parameters
The parameter record is of Abstract Data Types type [#fieldByName1: value1, #fieldByName2: value2, #fieldByName3: value3, ...]. For example [#ordNumber:"A227", #company:"PAMIR AIR", #type:"B-707-324C"].

Example - Director
global mdb
mdb.dbAppend([#ordNumber:"A227", #company:"PAMIR AIR", #type:"B-707-324C"])

Example - Authorware
CallObject(mdb; "dbAppend", [#ordNumber:"A227", #company:"PAMIR AIR", #type:"B-707-324C"])