DataSet.CreateDataReader Method ()
Assembly: System.Data (in system.data.dll)
public DataTableReader CreateDataReader ()
public function CreateDataReader () : DataTableReader
Return Value
A DataTableReader containing one or more result sets, corresponding to the DataTable instances contained within the source DataSet.The following example creates three DataTable instances, and adds each to a DataSet. The example then passes the filled DataSet to a procedure that calls the CreateDataReader method, and proceeds to iterate through all the result sets contained within the DataTableReader. The example displays the results in the Console window.
The example displays the following output in the Console window:
1 Mary 2 Andy 3 Peter 4 Russ ======================== Empty DataTableReader ======================== 1 Wireless Network Card 2 Hard Drive 3 Monitor 4 CPU ========================
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.