DataTableReader Konstruktorok
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Inicializálja a DataTableReader osztály új példányát.
Túlterhelések
| Name | Description |
|---|---|
| DataTableReader(DataTable) |
Inicializálja az osztály új példányát DataTableReadera DataTable megadott adatok használatával. |
| DataTableReader(DataTable[]) |
Inicializálja az DataTableReader osztály új példányát a megadott objektumtömb DataTable használatával. |
DataTableReader(DataTable)
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
Inicializálja az osztály új példányát DataTableReadera DataTable megadott adatok használatával.
public:
DataTableReader(System::Data::DataTable ^ dataTable);
public DataTableReader(System.Data.DataTable dataTable);
new System.Data.DataTableReader : System.Data.DataTable -> System.Data.DataTableReader
Public Sub New (dataTable As DataTable)
Paraméterek
- dataTable
- DataTable
Az DataTable , amelyből az új DataTableReader megkapja az eredményhalmazt.
A következőre érvényes:
DataTableReader(DataTable[])
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
- Forrás:
- DataTableReader.cs
Inicializálja az DataTableReader osztály új példányát a megadott objektumtömb DataTable használatával.
public:
DataTableReader(cli::array <System::Data::DataTable ^> ^ dataTables);
public DataTableReader(System.Data.DataTable[] dataTables);
new System.Data.DataTableReader : System.Data.DataTable[] -> System.Data.DataTableReader
Public Sub New (dataTables As DataTable())
Paraméterek
- dataTables
- DataTable[]
Az új DataTable objektum eredményeit biztosító objektumok tömbjeDataTableReader.
Példák
Az alábbi példában a TestConstructor metódus két DataTable példányt hoz létre. Az osztály konstruktorának DataTableReader bemutatásához a minta létrehoz egy újat DataTableReader a kettőt DataTablestartalmazó tömb alapján, és egy egyszerű műveletet hajt végre, és az első néhány oszlop tartalmát a konzolablakba nyomtatja. Az alkalmazás teszteléséhez hozzon létre egy új konzolalkalmazást, és illessze be a mintakódot az újonnan létrehozott fájlba.
private static void TestConstructor()
{
// Create two data adapters, one for each of the two
// DataTables to be filled.
DataTable customerDataTable = GetCustomers();
DataTable productDataTable = GetProducts();
// Create the new DataTableReader.
using (DataTableReader reader = new DataTableReader(
new DataTable[] { customerDataTable, productDataTable }))
{
// Print the contents of each of the result sets.
do
{
PrintColumns(reader);
} while (reader.NextResult());
}
Console.WriteLine("Press Enter to finish.");
Console.ReadLine();
}
private static DataTable GetCustomers()
{
// Create sample Customers table, in order
// to demonstrate the behavior of the DataTableReader.
DataTable table = new DataTable();
// Create two columns, ID and Name.
DataColumn idColumn = table.Columns.Add("ID", typeof(int));
table.Columns.Add("Name", typeof(string ));
// Set the ID column as the primary key column.
table.PrimaryKey = new DataColumn[] { idColumn };
table.Rows.Add(new object[] { 1, "Mary" });
table.Rows.Add(new object[] { 2, "Andy" });
table.Rows.Add(new object[] { 3, "Peter" });
table.Rows.Add(new object[] { 4, "Russ" });
return table;
}
private static DataTable GetProducts()
{
// Create sample Products table, in order
// to demonstrate the behavior of the DataTableReader.
DataTable table = new DataTable();
// Create two columns, ID and Name.
DataColumn idColumn = table.Columns.Add("ID", typeof(int));
table.Columns.Add("Name", typeof(string ));
// Set the ID column as the primary key column.
table.PrimaryKey = new DataColumn[] { idColumn };
table.Rows.Add(new object[] { 1, "Wireless Network Card" });
table.Rows.Add(new object[] { 2, "Hard Drive" });
table.Rows.Add(new object[] { 3, "Monitor" });
table.Rows.Add(new object[] { 4, "CPU" });
return table;
}
private static void PrintColumns(DataTableReader reader)
{
// Loop through all the rows in the DataTableReader
while (reader.Read())
{
for (int i = 0; i < reader.FieldCount; i++)
{
Console.Write(reader[i] + " ");
}
Console.WriteLine();
}
}
Private Sub TestConstructor()
' Create two data adapters, one for each of the two
' DataTables to be filled.
Dim customerDataTable As DataTable = GetCustomers()
Dim productDataTable As DataTable = GetProducts()
' Create the new DataTableReader.
Using reader As New DataTableReader( _
New DataTable() {customerDataTable, productDataTable})
' Print the contents of each of the result sets.
Do
PrintColumns(reader)
Loop While reader.NextResult()
End Using
Console.WriteLine("Press Enter to finish.")
Console.ReadLine()
End Sub
Private Function GetCustomers() As DataTable
' Create sample Customers table, in order
' to demonstrate the behavior of the DataTableReader.
Dim table As New DataTable
' Create two columns, ID and Name.
Dim idColumn As DataColumn = table.Columns.Add("ID", _
GetType(Integer))
table.Columns.Add("Name", GetType(String))
' Set the ID column as the primary key column.
table.PrimaryKey = New DataColumn() {idColumn}
table.Rows.Add(New Object() {1, "Mary"})
table.Rows.Add(New Object() {2, "Andy"})
table.Rows.Add(New Object() {3, "Peter"})
table.Rows.Add(New Object() {4, "Russ"})
Return table
End Function
Private Function GetProducts() As DataTable
' Create sample Products table, in order
' to demonstrate the behavior of the DataTableReader.
Dim table As New DataTable
' Create two columns, ID and Name.
Dim idColumn As DataColumn = table.Columns.Add("ID", _
GetType(Integer))
table.Columns.Add("Name", GetType(String))
' Set the ID column as the primary key column.
table.PrimaryKey = New DataColumn() {idColumn}
table.Rows.Add(New Object() {1, "Wireless Network Card"})
table.Rows.Add(New Object() {2, "Hard Drive"})
table.Rows.Add(New Object() {3, "Monitor"})
table.Rows.Add(New Object() {4, "CPU"})
Return table
End Function
Private Sub PrintColumns( _
ByVal reader As DataTableReader)
' Loop through all the rows in the DataTableReader.
Do While reader.Read()
For i As Integer = 0 To reader.FieldCount - 1
Console.Write(reader(i).ToString() & " ")
Next
Console.WriteLine()
Loop
End Sub
A Konzol ablakban a következő eredmények jelennek meg:
1 Mary
2 Andy
3 Peter
4 Russ
1 Wireless Network Card
2 Hard Drive
3 Monitor
4 CPU
Megjegyzések
Ha egy DataTableReader adott DataSettáblán belül a táblák egésze vagy egy részhalmaza alapján kell létrehoznia, hívja meg a DataSetmetódust CreateDataReader . Ha olyan példánycsoport alapján DataTableReader szeretne létrehozni egy új DataTable példányt, amely egyébként nem kapcsolódik, használja ezt a konstruktort. Ezt a konstruktort is kihasználva átrendezheti a belül DataTableslévők sorrendjétDataTableReader, ha a forrásukon DataSet belüli sorrend nem felel meg az Igényeinek.