void=dbEdit(record: propertyList)
The function records values of items defined in the record parameter to the actual 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.dbEdit([#ordNumber:"A227", #company:"PAMIR AIR", #type:"B-707-324C"])

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