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