Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - AppForge Programming » UltraLite for AppForge API Reference » ULTable class

Insert method Next Page

InsertBegin method


Prepares a table for inserting a new row, setting column values to their defaults.

Syntax

InsertBegin( )
Member of UltraLiteAFLib.ULTable

Examples

In this example, InsertBegin sets insert mode to allow you to begin assigning data values to CustomerTable columns.

CustomerTable.InsertBegin
CustomerTable.Column("Fname").StringValue = fname
CustomerTable.Column("Lname").StringValue = lname
CustomerTable.Insert
See also