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

DB.UpdateStart


Platform Objects


Description

Prepares the record set for modification of record data. Should be called before any calls to SetFieldValue for record's update.


Syntax


Function UpdateStart


Parameters


none

Return value


none


Example

Sample code

DB.TransactionStart() 
Do
   DB.UpdateStart()
   DB.SetCellNull "Field1"
   DB.UpdateFinish()
Loop While( DB.GoNext() )
DB.TransactionFinish()
End If


See also

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