I have a VB.NET windows app which calls a single stored proc which returns a dataset containing multiple tables.
At the moment the only way I can seem to refernence the various tables is through the standard code: -
DataSet.Tables("Table"), DataSet.Tables("Table1"), DataSet.Tables("Table2") .... and so on.
Is there any way that I can assign specific names to the individual tables when the dataset is created?????
At the moment the only way I can seem to refernence the various tables is through the standard code: -
DataSet.Tables("Table"), DataSet.Tables("Table1"), DataSet.Tables("Table2") .... and so on.
Is there any way that I can assign specific names to the individual tables when the dataset is created?????