DataReader を使用したクエリ
CData ADO.NET Provider for Microsoft OneDrive では、次の2つのネイティブ.NET インターフェースを使用して、Microsoft OneDrive からデータを取得できます。OneDriveDataAdapter オブジェクトおよびOneDriveDataReader オブジェクト。各オブジェクトは同じタスク(データの取得)を実行しますが、実行方法が異なります。OneDriveDataAdapter オブジェクトはクエリに一致するすべてのデータを取得しますが、OneDriveDataReader オブジェクトは必要に応じてインクリメントしながら一部のデータだけをフェッチします。
OneDriveDataReader の使用
OneDriveDataReader はページ単位でデータを取得できるため、OneDriveDataAdapter よりもデータの取得が高速です。OneDriveDataReader からデータを読み取っていくと、必要に応じて一定の間隔で、データソースからの結果の次のページが要求されます。このため、結果が高速に返されます。 次の例は、Files テーブルからすべてのカラムを選択します。
C#
string connectionString = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;"; using (OneDriveConnection connection = new OneDriveConnection(connectionString)) { OneDriveCommand cmd = new OneDriveCommand("SELECT * FROM Files", connection); OneDriveDataReader 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 = "InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MySecretKey;CallbackURL=http://localhost:33333;" Using connection As New OneDriveConnection(connectionString) Dim cmd As New OneDriveCommand("SELECT * FROM Files", connection) Dim rdr As OneDriveDataReader = cmd.ExecuteReader() While rdr.Read() Console.WriteLine([String].Format(vbTab & "{0} --> " & vbTab & vbTab & "{1}", rdr("Id"), rdr("Name"))) End While End Using