Hallo
In der Online Hilfe gibt es eine Aussage zu der maximalen Anzahl an Reihen, die eine DB (DataTable) haben kann:
Weiß jemand wieviele Spalten (Columns) maximal möglich sind ?
Vielen Dank für alle Antworten im voraus
In der Online Hilfe gibt es eine Aussage zu der maximalen Anzahl an Reihen, die eine DB (DataTable) haben kann:
If you are creating a DataTable programmatically, you must first define its schema by adding DataColumn objects to the DataColumnCollection (accessed through the Columns property). For more information about adding DataColumn objects, see Adding Columns to a Table.
To add rows to a DataTable, you must first use the NewRow method to return a new DataRow object. The NewRow method returns a row with the schema of the DataTable, as it is defined by the table's DataColumnCollection. The maximum number of rows that a DataTable can store is 16,777,216. For more information, see Adding Data to a Table.
Weiß jemand wieviele Spalten (Columns) maximal möglich sind ?
Vielen Dank für alle Antworten im voraus