DataReader を使用したクエリ
CData ADO.NET Provider for Sage 300 では、次の2つのネイティブ.NET インターフェースを使用して、Sage 300 からデータを取得できます。Sage300DataAdapter オブジェクトおよびSage300DataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。Sage300DataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、Sage300DataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
Sage300DataReader の使用
Sage300DataReader はページ単位でデータを取得できるため、Sage300DataAdapter よりもデータの取得が高速です。Sage300DataReader からデータを読み取っていくと、必要に応じて一定の間隔で、データソースからの結果の次のページが要求されます。このため、結果が高速に返されます。 次の例は、OEInvoices テーブルからすべてのカラムを選択します。
C#
string connectionString = "User=SAMPLE;Password=password;URL=http://127.0.0.1/Sage300WebApi/v1/-/;Company=SAMINC;"; using (Sage300Connection connection = new Sage300Connection(connectionString)) { Sage300Command cmd = new Sage300Command("SELECT * FROM OEInvoices", connection); Sage300DataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { Console.WriteLine(String.Format("\t{0} --> \t\t{1}", rdr["InvoiceUniquifier"], rdr["ApprovedLimit"])); } }
VB.NET
Dim connectionString As String = "User=SAMPLE;Password=password;URL=http://127.0.0.1/Sage300WebApi/v1/-/;Company=SAMINC;" Using connection As New Sage300Connection(connectionString) Dim cmd As New Sage300Command("SELECT * FROM OEInvoices", connection) Dim rdr As Sage300DataReader = cmd.ExecuteReader() While rdr.Read() Console.WriteLine([String].Format(vbTab & "{0} --> " & vbTab & vbTab & "{1}", rdr("InvoiceUniquifier"), rdr("ApprovedLimit"))) End While End Using