ADO.NET Provider for QuickBooks Online

Build 22.0.8678

データの変更

アダプターのUpdate メソッドを使用して、データを更新します。このオーバーロードされたメソッドは、パラメータとしてDataTable を受け取ることができ、データソースに対して行われたすべての変更をコミットします。 データテーブルの名前は、引数として渡すことができ、従来の方法でデータセット全体を更新するためにも使用されます。 データテーブルをUpdate メソッドへの引数として使用する場合、アダプターは、データテーブルに対して行われた変更を評価し、行ごとに適切なコマンド(INSERT、UPDATE、またはDELETE)を実行します。

次の例は、Customers エントリの1つであるGivenName を更新します。

C#

using (QuickBooksOnlineConnection connection = new QuickBooksOnlineConnection(connectionString)) {
  QuickBooksOnlineDataAdapter dataAdapter = new QuickBooksOnlineDataAdapter(
    "SELECT Id, GivenName FROM Customers", connection);

  dataAdapter.UpdateCommand = new QuickBooksOnlineCommand(
    "UPDATE Customers SET GivenName = @GivenName " +
    "WHERE Id = @Id", connection);
 
  dataAdapter.UpdateCommand.Parameters.Add(new QuickBooksOnlineParameter("@GivenName", DbType.String, "GivenName"));
  dataAdapter.UpdateCommand.Parameters.Add(new QuickBooksOnlineParameter("@Id", DbType.String, "Id"));
  dataAdapter.UpdateCommand.Parameters[1].SourceVersion = DataRowVersion.Original;

  DataTable table = new DataTable();
  dataAdapter.Fill(table);

  DataRow firstrow = table.Rows[0];
  firstrow["GivenName"] = "Trujilo, Ana";

  dataAdapter.Update(table);

  Console.WriteLine("Rows after update.");
  
  foreach (DataRow row in table.Rows) {
    Console.WriteLine("{0}: {1}", row["Id"], row["GivenName"]);
  }
}

VB.NET

Using connection As New QuickBooksOnlineConnection(connectionString)
  Dim dataAdapter As New QuickBooksOnlineDataAdapter(
    "SELECT Id, GivenName FROM Customers", connection)
  
  dataAdapter.UpdateCommand = New QuickBooksOnlineCommand(
    "UPDATE Customers SET GivenName = @GivenName " +
    "WHERE Id = @Id", connection)
  
  dataAdapter.UpdateCommand.Parameters.Add(new QuickBooksOnlineParameter("@GivenName", DbType.String, "GivenName"))
  dataAdapter.UpdateCommand.Parameters.Add(new QuickBooksOnlineParameter("@Id", DbType.String, "Id"))
  dataAdapter.UpdateCommand.Parameters(1).SourceVersion = DataRowVersion.Original
  
  Dim table As New DataTable()
  dataAdapter.Fill(table)
  
  Dim firstrow As DataRow = table.Rows(0)
  firstrow("GivenName") = "Trujilo, Ana"
  
  dataAdapter.Update(table)
  
  Console.WriteLine("Rows after update.")
  
  For Each row As DataRow In table.Rows
    Console.WriteLine("{0}: {1}", row("Id"), row("GivenName"))
  Next
End Using

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