Merging Datasets

  • Thread starter Thread starter Jon Vaughan
  • Start date Start date
J

Jon Vaughan

I have 2 datasets , one returned as a dataset from a webservice and one
created client side form the same stored procedure that is returned from the
webservice. I then try and merge the data, but they dont seem to merge.

When I return a single table , this method works fine, but im returning 3
tables and the merge isnt happening. Is there anyway to find out how I can
why a merge isnt occuring, as the merge doesnt return any errors,
 
Jon,

Here is the same link Cor posted:
http://tinyurl.com/g9ogz

I have had similar trouble merging datasets on occasion.

If you can't get the dataset to merge, try using the merge method of
the data tables rather than the dataset. Even if you only do so for
debugging purposes, it will help you narrow down where the problem
lies, and you can go from there.

adm
 
great tip ad, thanks !

adm said:
Jon,

Here is the same link Cor posted:
http://tinyurl.com/g9ogz

I have had similar trouble merging datasets on occasion.

If you can't get the dataset to merge, try using the merge method of
the data tables rather than the dataset. Even if you only do so for
debugging purposes, it will help you narrow down where the problem
lies, and you can go from there.

adm
 
Back
Top