I've merged data from my untyped dataset into my typed dataset.
I've confirmed the typed dataset does contain the new data, however when I call the sqladapter.update(dataset) method, nothing is uploaded to the database.
When I query the status of the dataset it does confirm changes.
Why would it not send the databack? I'm I missing something?
Here's the code..
Jeff W.
MCSE, CNE
I've confirmed the typed dataset does contain the new data, however when I call the sqladapter.update(dataset) method, nothing is uploaded to the database.
When I query the status of the dataset it does confirm changes.
Why would it not send the databack? I'm I missing something?
Here's the code..
Code:
Ds_stocksDaily1.Merge(ds_stockRecord, True, MissingSchemaAction.Add)
SqlDataAdapter1.Update(Ds_stocksDaily1)
Jeff W.
MCSE, CNE