Problem removeing DataTable and Adding DataTable to DataSet
From: charliewest (charliewest_at_discussions.microsoft.com)
Date: 03/13/05
- Next message: Gwyn Evans: "RE: ADO MS Access Connection weirdness"
- Previous message: Yogeshwar3-India: "How to Change the Platforms"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 13 Mar 2005 01:53:02 -0800
Using .Net CF, I have a DataSet which includes four tables. Periodically, i
must refresh one table w/ new data from the Sql CE database. I go about this
as follows:
ds.Tables.RemoveAt(3);
DataTable dt = utilities.fGetResponses(<< send params to create table>>);
ds.Tables.Add(dt);
I get the following error:
A first chance exception of type 'System.IO.FileNotFoundException' occurred
in mscorlib.dll. Additional information: FileNotFoundException
I've checked the properties of the retunring dt object, and it's correct.
Any ideas why this doesn't work?
Thanks,
- Next message: Gwyn Evans: "RE: ADO MS Access Connection weirdness"
- Previous message: Yogeshwar3-India: "How to Change the Platforms"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|