DataTables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there an easy way to display everything in a DataTable when you're
testing... DataSets allow you to see it all with GetXml... with DataTables it
seems like you're forced to pick a specific row... then you can look at the
ItemArray for that row in the watch pane... which isn't really what I want...
any ideas?
 
If it is a Windows app, put a Datagrid on the form for test purposes and
then
Datagrid1.DataSource = theDataTable.
Also, the way you described testing a DataSet, you may create a test
DataSet, then
TestDataSet.tables.add(theDataTable) and examine it the way you described.
 
Back
Top