Use the Update method to update a row in a table.
Prerequisites
There are no prerequisites for this task.
Move to the row you want to update.
You can move to a row by scrolling through the table or by searching the table using find or lookup methods.
Enter update mode.
For example, the following instruction enters update mode on a table.
t.UpdateBegin(); |
Set the new values for the row to be updated.
For example, the following instruction sets the id column in the buffer to 3.
t.SetInt( id , 3); |
Execute the Update.
t.Update(); |
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |