Contents Index Update method ULTableSchema class

UltraLite ActiveX User's Guide
  UltraLite ActiveX API Reference
    ULTable class

UpdateBegin method


Prototype 

UpdateBegin( )
Member of UltraliteActiveX.ULTable

Description 

Prepares a table for modifying the contents of the current row.

Example 
' eMbedded Visual Basic
Table.UpdateBegin
Table.Columns( "ColName" ).Value = "New Value"
Table.Update
// JScript
Table.UpdateBegin();
Table.Columns("ColName").Values = "NewValue";
Table.Update();

Contents Index Update method ULTableSchema class