one single programmer

I've started doing some independent work on the side. This has opened my eyes to somethings and I plan to write about it as time permits.

Monday, November 20, 2006

Even better dataset join!

Earlier I showed one way to combine two datasets.  Well while I was playing around on another part I saw the dataset.merge method and well call me a monkey’s uncle if it don’t work nice as pie.

 

ds2 = m_DAL.LoadDataSet(m_DAL, strSQL)

ds.Merge(ds2)

 

That’s IT!

 

Later…