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