SiMX Help‎ > ‎The Target Platform‎ > ‎Objects‎ > ‎DB Object‎ > ‎

DB.AppendStart


Platform Objects


Description

Calling the trg.DB.AppendStart() prepares a record set for insertion of a new record. Should be called before any calls to SetFieldValue for record's insertion


Syntax


Function AppendStart


Parameters


none

Return value


none


Example

Sample code

DB.TransactionStart() 
For I = 1 To 100 
   DB.AppendStart() 
   DB.SetFieldValue "Field1", I 
   DB.AppnedFinish()
Next
DB.TransactionFinish()
End If


See also

Platform Objects and Methods
DB.sort
DB.AppendFinish
DB.SetFieldValue
DB.TransactionFinish