Hi all, at first glance you would know that I am new at .net.
I have created dataset with TABLE1.
I want to add TABLE2 in dataset.
what possible different options are there to add table in dataset ?
Thank you for your unselfish help.
Printable View
Hi all, at first glance you would know that I am new at .net.
I have created dataset with TABLE1.
I want to add TABLE2 in dataset.
what possible different options are there to add table in dataset ?
Thank you for your unselfish help.
NANC,
Three ways to add a table to the data set's data table collection. Search MSDN for "DataTableCollection.Add Method".
There you will find complete descriptions of the overloaded Add method, complete with sample code.
Mike
VB Code:
dim ds as new dataset() ds.tables.add(new datatable("mzim"))