Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

mytablecolumnsaddstudentid

Get xml from dataset.
Wednesday, 01 February 2012 04:28
Following code will give you the XML representation of the data stored in the DataSet.



DataSet mydataSet = new DataSet();
DataTable table = dataSet.Tables.Add("Items");
mytable.Columns.Add("studentid", typeof(int));
mytable.Columns.Add("name", typeof(string));
mytable.Rows.Add(1,'mac');
mytable.Rows.Add(2,'jac');
mydataSet.GetXml()

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/o9SwMh34waI/14609

 


Taxonomy by Zaragoza Online