UltraLite User's Guide
C++ API Reference
ULCursor class
bool Update( )
Updates a row in the table with values specified in previous Set methods.
true (1) if successful.
false (0) if unsuccessful.
The following example sets a new price on the current row of the productTable object, and then updates the row in the UltraLite database:
productTable.SetPrice( 400 ); productTable.Update();