ADO.NET Provider for Xero WorkflowMax

Build 23.0.8839

UPDATE ステートメント

既存のレコードを変更するには、UPDATE ステートメントを使用します。

Update 構文

UPDATE 構文はカンマ区切りのカラムをインプットとして取り、SET 句のname-value ペアを新しいカラム値として取ります。

UPDATE <table_name> SET { <column_reference> = <expression> } [ , ... ] WHERE { Id = <expression>  } [ { AND | OR } ... ] 

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
ExecuteNonQuery メソッドを使って、データ操作コマンドを実行し影響を受けた行を取得できます。

C#

String connectionString = "OAuthClientID=myClientID;OAuthClientSecret=myClientSecret";
using (XeroWorkflowMaxConnection connection = new XeroWorkflowMaxConnection(connectionString)) {
  int rowsAffected;
  XeroWorkflowMaxCommand cmd = new XeroWorkflowMaxCommand("UPDATE Clients SET Name='John' WHERE Id = @myId", connection);
  cmd.Parameters.Add(new XeroWorkflowMaxParameter("myId","9d382fcf-7013-4d97-8dd8-c08e8b26a0b2"));
  rowsAffected = cmd.ExecuteNonQuery();
}

VB.NET

Dim connectionString As [String] = "OAuthClientID=myClientID;OAuthClientSecret=myClientSecret"
Using connection As New XeroWorkflowMaxConnection(connectionString)
  Dim rowsAffected As Integer
  Dim cmd As New XeroWorkflowMaxCommand("UPDATE Clients SET Name='John' WHERE Id = @myId", connection)
  cmd.Parameters.Add(New XeroWorkflowMaxParameter("myId", "9d382fcf-7013-4d97-8dd8-c08e8b26a0b2"))
  rowsAffected = cmd.ExecuteNonQuery()
End Using

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839