Manuall appending a DataSet

  • Thread starter Thread starter Philip Townsend
  • Start date Start date
P

Philip Townsend

Is there any way to manually add a record to a dataset? In my case, I
may need to populate the dataset from a stored procedure or xml file,
but in some cases I may need to manually add an additional record or
row. Any suggestions? Thanks!
 
YOu'll append them to a table in a dataset, not the dataset itself since it
can have a zillion tables in it.

Create a new datarow using DataRow = dataTable.NewRow();
 
Back
Top