KeyFields Property (ZohoCommandBuilder)
Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands.
public new string KeyFields {get; set;}
'Declaration
Public Shadows Property KeyFields As String
Property Value
The string containing list of key field names separated by semicolon.
The following example demonstrates how UPDATE and DELETE statements are generated.
public void UseKeyFields(string connectionString) {
ZohoConnection conn = new ZohoConnection(connectionString);
conn.Open();
ZohoDataAdapter adapter = new ZohoDataAdapter("SELECT * FROM Accounts", conn);
ZohoCommandBuilder commBuilder = new ZohoCommandBuilder(adapter);
commBuilder.ConflictOption = ConflictOption.OverwriteChanges;
commBuilder.KeyFields = "AccountID, \"Account Name\"";
string updateComm = commBuilder.GetUpdateCommand().CommandText;
string deleteComm = commBuilder.GetDeleteCommand().CommandText;
Console.WriteLine(updateComm);
Console.WriteLine(deleteComm);
conn.Close();
}
Public Sub UseKeyFields(ByVal connectionString As String)
Dim conn As ZohoConnection = New ZohoConnection(connectionString)
conn.Open()
Dim adapter As ZohoDataAdapter = New ZohoDataAdapter("SELECT * FROM Accounts", conn)
Dim commBuilder As ZohoCommandBuilder = New ZohoCommandBuilder(adapter)
commBuilder.ConflictOption = ConflictOption.OverwriteChanges
commBuilder.KeyFields = "AccountID, \"Account Name\""
Dim updateComm As String = commBuilder.GetUpdateCommand().CommandText
Dim deleteComm As String = commBuilder.GetDeleteCommand().CommandText
Console.WriteLine(updateComm)
Console.WriteLine(deleteComm)
conn.Close()
End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2