TrkRecords.Save (method)

method Save
Syntax: object.Save
Description:
Saves the records to the database.

Notes:

If the Save method is called on a TrkRecords object, it tries to save all the records to the database. If a record that is being saved already exists in the database (duplicate ID), the record in the database will be updated with the data in the TrkRecord object. If the record does not exist (no matching ID in the database), then it inserts a new row in the database with information from the TrkRecord object.

Example:

oTrkRecords.Add
oTrkRecords.Add
oTrkRecords.Add
... update all record fields
oTrkRecords.Save