how to copy dataset to datatable
Can anybody tell me how can i copy dataset to datatable in vb.net or can write a small code for that
Dataset can contain more than one table to copy dataset to data table you can copy each table of dataset to different tables.
DataSet ds = new DataSet(); DataTable dd = ds.Tables["TableName"]; |