DataAdapter を使用したクエリ
CData ADO.NET Provider for SAP Gateway では、次の2つのネイティブ.NET インターフェースを使用して、SAP Gateway からデータを取得できます。SAPGatewayDataAdapter オブジェクトおよびSAPGatewayDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。SAPGatewayDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、SAPGatewayDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
SAPGatewayDataAdapter の使用
アダプターのFill メソッドを使用して、データソースからデータを取得します。空のDataTable インスタンスがFill メソッドへの引数として渡されます。このメソッドが戻ってきたとき、DataTable インスタンスにはクエリされたデータが設定されています。Fill メソッドは、戻る前にデータソースからすべてのデータを取得する必要があるため、SAPGatewayDataAdapter はSAPGatewayDataReader よりも時間がかかります。
次の例は、SampleTable_1 テーブルのId カラムとColumn1 カラムを選択します。
C#
string connectionString = "InitiateOAuth=GETANDREFRESH;User=user;Password=password;URL=https://sapes5.sapdevcenter.com/sap/opu/odata/IWBEP/GWSAMPLE_BASIC/";
using (SAPGatewayConnection connection = new SAPGatewayConnection(connectionString)) {
SAPGatewayDataAdapter dataAdapter = new SAPGatewayDataAdapter(
"SELECT Id, Column1 FROM SampleTable_1", connection);
DataTable table = new DataTable();
dataAdapter.Fill(table);
Console.WriteLine("Contents of SampleTable_1.");
foreach (DataRow row in table.Rows) {
Console.WriteLine("{0}: {1}", row["Id"], row["Column1"]);
}
}
VB.NET
Dim connectionString As String = "InitiateOAuth=GETANDREFRESH;User=user;Password=password;URL=https://sapes5.sapdevcenter.com/sap/opu/odata/IWBEP/GWSAMPLE_BASIC/"
Using connection As New SAPGatewayConnection(connectionString)
Dim dataAdapter As New SAPGatewayDataAdapter("SELECT Id, Column1 FROM SampleTable_1", connection)
Dim table As New DataTable()
dataAdapter.Fill(table)
Console.WriteLine("Contents of SampleTable_1.")
For Each row As DataRow In table.Rows
Console.WriteLine("{0}: {1}", row("Id"), row("Column1"))
Next
End Using