DataReader を使用したクエリ
CData ADO.NET Provider for Microsoft SharePoint Excel では、次の2つのネイティブ.NET インターフェースを使用して、Excel Services からデータを取得できます。Microsoft SharePoint ExcelDataAdapter オブジェクトおよびMicrosoft SharePoint ExcelDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。Microsoft SharePoint ExcelDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、Microsoft SharePoint ExcelDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
Microsoft SharePoint ExcelDataReader の使用
Microsoft SharePoint ExcelDataReader はページ単位でデータを取得できるため、Microsoft SharePoint ExcelDataAdapter よりもデータの取得が高速です。Microsoft SharePoint ExcelDataReader からデータを読み取っていくと、必要に応じて一定の間隔で、データソースからの結果の次のページが要求されます。このため、結果が高速に返されます。 次の例は、Account テーブルからすべてのカラムを選択します。
C#
string connectionString = "Url=https://myorg.sharepoint.com;[email protected];Password=password;File=Book1.xlsx;"; using (Microsoft SharePoint ExcelConnection connection = new Microsoft SharePoint ExcelConnection(connectionString)) { Microsoft SharePoint ExcelCommand cmd = new Microsoft SharePoint ExcelCommand("SELECT * FROM Account", connection); Microsoft SharePoint ExcelDataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { Console.WriteLine(String.Format("\t{0} --> \t\t{1}", rdr["Id"], rdr["Name"])); } }
VB.NET
Dim connectionString As String = "Url=https://myorg.sharepoint.com;[email protected];Password=password;File=Book1.xlsx;" Using connection As New Microsoft SharePoint ExcelConnection(connectionString) Dim cmd As New Microsoft SharePoint ExcelCommand("SELECT * FROM Account", connection) Dim rdr As Microsoft SharePoint ExcelDataReader = cmd.ExecuteReader() While rdr.Read() Console.WriteLine([String].Format(vbTab & "{0} --> " & vbTab & vbTab & "{1}", rdr("Id"), rdr("Name"))) End While End Using