dotConnect for Zoho Desk Documentation
Devart.Data.ZohoDesk Namespace / ZohoDeskDataAdapter Class / InsertCommand Property

In This Topic
InsertCommand Property
In This Topic
Gets or sets a Zoho Desk statement to insert new records into the data source.
Syntax
'Declaration
 
Public Shadows Property InsertCommand As ZohoDeskCommand
 

Property Value

A ZohoDeskCommand used during an update operation to insert records in the data source that correspond to new rows in the System.Data.DataSet.
Remarks
During an update operation, if InsertCommand is not set and primary key information is present in the System.Data.DataSet, you can use the ZohoDeskCommandBuilder class to automatically generate InsertCommand, and additional commands needed to reconcile the System.Data.DataSet to the data source. To do this, set the SelectCommand property of the ZohoDeskDataAdapter. For more information see "Automatically Generated Commands" in the Microsoft .NET Framework SDK documentation.

Note: If execution of this command returns rows, these rows may be added to the System.Data.DataSet depending upon how you set the Devart.Common.DbCommandBase.UpdatedRowSource property of the ZohoDeskCommand object.

See Also