ADO.NET Provider for Sage Business Cloud Accounting

Build 22.0.8479

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 = "InitiateOAuth=GETANDREFRESH;";
using (SageBCAccountingConnection connection = new SageBCAccountingConnection(connectionString)) {
  int rowsAffected;
  SageBCAccountingCommand cmd = new SageBCAccountingCommand("UPDATE SampleTable_1 SET Column1='John' WHERE Id = @myId", connection);
  cmd.Parameters.Add(new SageBCAccountingParameter("myId","6"));
  rowsAffected = cmd.ExecuteNonQuery();
}

VB.NET

Dim connectionString As [String] = "InitiateOAuth=GETANDREFRESH;"
Using connection As New SageBCAccountingConnection(connectionString)
  Dim rowsAffected As Integer
  Dim cmd As New SageBCAccountingCommand("UPDATE SampleTable_1 SET Column1='John' WHERE Id = @myId", connection)
  cmd.Parameters.Add(New SageBCAccountingParameter("myId", "6"))
  rowsAffected = cmd.ExecuteNonQuery()
End Using

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8479