UPDATE ステートメント
既存のレコードを変更するには、UPDATE ステートメントを使用します。
Update 構文
UPDATE 構文はカンマ区切りのカラムをインプットとして取り、SET 句のname-value ペアを新しいカラム値として取ります。
UPDATE <table_name> SET <select_statement> | {<column_reference> = <expression> [ , ... ]} WHERE { Id = <expression> } [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
ExecuteNonQuery メソッドを使って、データ操作コマンドを実行し影響を受けた行を取得できます。
C#
String connectionString = "InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;"; using (Zoho InventoryConnection connection = new Zoho InventoryConnection(connectionString)) { int rowsAffected; Zoho InventoryCommand cmd = new Zoho InventoryCommand("UPDATE Contacts SET CustomerName='John' WHERE Id = @myId", connection); cmd.Parameters.Add(new Zoho InventoryParameter("myId","3449524000000101001")); rowsAffected = cmd.ExecuteNonQuery(); }
VB.NET
Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;" Using connection As New Zoho InventoryConnection(connectionString) Dim rowsAffected As Integer Dim cmd As New Zoho InventoryCommand("UPDATE Contacts SET CustomerName='John' WHERE Id = @myId", connection) cmd.Parameters.Add(New Zoho InventoryParameter("myId", "3449524000000101001")) rowsAffected = cmd.ExecuteNonQuery() End Using