The record object is a member of the data object. It provides the ability to identify records. A record is identified by field name - field value pairs. MethodsSetSets the record identifier using a field name and a field value. Function Set( field, value ) Record.Set "ID", 25 ModifyModifies or adds a field name - field value pair to the record identifier. Function Modify( field, value ) Record.Modify"ID", 33 GetValueGets a field value from the record identifier using a field name. Function GetValue( field ) Record.GetValue( "ID" ) GetGets a SQL string corresponding to the record identifier Function Get() Record.Get() EmptyClears the record identifier. Function Empty() Record.Empty() IsEmptyChecks if the record identifier is empty. Function IsEmpty() Record.IsEmpty() |