I'm using an in-core DataSet as an image of my application's
'database' (a multi-table Access97 mdb file). Updates are made to
the DataTables within the DataSet via forms with bound TextBoxes,
then written to the database... or at least that's what's supposed
to be happening.
Unfortunately, I've discovered that while it appears that when I
create a new record/row I'm successfully updating the Access
database, once the Update is complete the new record is not (is no
longer) present in the DataSet's DataTable. Ack!
It's not what we don't know that gives us trouble, it's what
we know that ain't so. -- Will Rogers
While it's _possible_ that I've invented the dotNET equivalent of
transporter technology and my DataSet is merely acting as a tachyon
sequencing buffer during the database updates, it's slightly more
likely that I'm missing some subtle (or not-so-subtle) part of the
dotNet DataSet-to-database sequence.
Here's what I'm doing under the impression that it's supposed to be
updating both the DataTable/DataSet AND the database.
Given a DataSet 'ds' and a table within that DataSet whose name is
contained in the variable 'table_name', the logic looks like:
---------
if ( ds.HasChanges() ) {
// (Odd if it doesn't)
DataTable dt_changes = ds[table_name].GetChanges();
// Make changes, but only if any exist
if (dt_changes != null) {
DataRowCollection drc = dt_changes.Rows; //**DEBUG**
if (dt_changes.Rows.Count > 0) {
try {
// Write changes back to database (.mdb file)
DbAdapters[table_name].Update(dt_changes);
} catch (DBConcurrencyException DBCe) {
ShowDbConcurrencyException(DBCe); // Report error
}
// Make changes permanent part of DataSet
ds.Tables[table_name].AcceptChanges();
}
}
}
---------
The data does get to the database file... it's just not visible to
either a DataView of the table or a VSDebug Watch of the DataTable
itself (as far as I can tell -- 'Watch'ing a DataTable with 150
items gets a little tricky <grin>)
Assuming that neither the OleDbDataAdapter.Update() nor the
DataTable.AcceptChanges() triggers an exception, _should_ the above
do what I think it should, that is, update both the in-core
DataTable AND the Access97 database? Or is there something subtle
I'm overlooking?
Or do I truly need to re-.Fill each table from the database every
time I issue an Update() to it? (Ack! Phlblbt!)
Frank McKenney, McKenney Associates
Richmond, Virginia / (804) 320-4887
Munged E-mail: frank uscore mckenney ayut minds pring dawt cahm (y'all)
--
You can start a fire just by rubbing two dry theories together.
-- Robert M. Powers, British astronomer
-- 4 2512
Frank,
I think your problem lies with these statements:
DataTable dt_changes = ds[table_name].GetChanges();
- and -
DbAdapters[table_name].Update(dt_changes);
This would be ok to do if you were basically "rolling your own" update
stuff, but in using the .Update() method of the DataAdapter, I believe you
need to use the original DataSet or DataTable and not use the .GetChanges()
method.
~~Bonnie
Bonnie,
Thank you for taking the time to reply.
On Mon, 22 Aug 2005 11:21:03 -0700, Bonnie Berent [C# MVP] <Bo**************@discussions.microsoft.com> wrote: I think your problem lies with these statements:
DataTable dt_changes = ds[table_name].GetChanges();
- and -
DbAdapters[table_name].Update(dt_changes);
This would be ok to do if you were basically "rolling your own" update stuff, but in using the .Update() method of the DataAdapter, I believe you need to use the original DataSet or DataTable and not use the .GetChanges() method.
Oh. So if someone is using DataAdapter.Update() they'd have to re-write
the entire table? That's doable-but-not-efficient in my case, but for a
really large table I'd think it could approach "horrendous". Ig.
Anyway, it's certainly something I hadn't considered. I guess I'd better
re-read the OleDbDataAdapter.Update() documentation again.
Thanks for pointing that out to me. I'll let you know what happens.
Frank McKenney, McKenney Associates
Richmond, Virginia / (804) 320-4887
Munged E-mail: frank uscore mckenney ayut minds pring dawt cahm (y'all)
No no no ... it doesn't re-write the entire table. But the .Update() method
needs to have a before-and-after snapshot of the data (hence the whole
DataSet) in order to both update the database correctly (IOW, to know if
you're doing an Update, an Insert or a Delete) and to do the proper thing to
the DataSet when it's done.
~~Bonnie
"Frnak McKenney" wrote: Bonnie,
Thank you for taking the time to reply.
On Mon, 22 Aug 2005 11:21:03 -0700, Bonnie Berent [C# MVP] <Bo**************@discussions.microsoft.com> wrote: I think your problem lies with these statements:
DataTable dt_changes = ds[table_name].GetChanges();
- and -
DbAdapters[table_name].Update(dt_changes);
This would be ok to do if you were basically "rolling your own" update stuff, but in using the .Update() method of the DataAdapter, I believe you need to use the original DataSet or DataTable and not use the .GetChanges() method.
Oh. So if someone is using DataAdapter.Update() they'd have to re-write the entire table? That's doable-but-not-efficient in my case, but for a really large table I'd think it could approach "horrendous". Ig.
Anyway, it's certainly something I hadn't considered. I guess I'd better re-read the OleDbDataAdapter.Update() documentation again.
Thanks for pointing that out to me. I'll let you know what happens.
Frank McKenney, McKenney Associates Richmond, Virginia / (804) 320-4887 Munged E-mail: frank uscore mckenney ayut minds pring dawt cahm (y'all)
Bonnie - he's actually doing this part right. He's using the GetChanges to
update the data but he's calling AcceptChanges on the original dataset.
That will cause the state of the datatable to be the same as if he had used
Update on it directly. But I still can't figure out his problem ;-(..
"Bonnie Berent [C# MVP]" <Bo**************@discussions.microsoft.com> wrote
in message news:CD**********************************@microsof t.com... No no no ... it doesn't re-write the entire table. But the .Update() method needs to have a before-and-after snapshot of the data (hence the whole DataSet) in order to both update the database correctly (IOW, to know if you're doing an Update, an Insert or a Delete) and to do the proper thing to the DataSet when it's done.
~~Bonnie "Frnak McKenney" wrote:
Bonnie,
Thank you for taking the time to reply.
On Mon, 22 Aug 2005 11:21:03 -0700, Bonnie Berent [C# MVP] <Bo**************@discussions.microsoft.com> wrote: > I think your problem lies with these statements: > > DataTable dt_changes = ds[table_name].GetChanges(); > > - and - > > DbAdapters[table_name].Update(dt_changes); > > This would be ok to do if you were basically "rolling your own" update > stuff, but in using the .Update() method of the DataAdapter, I believe > you > need to use the original DataSet or DataTable and not use the > .GetChanges() > method.
Oh. So if someone is using DataAdapter.Update() they'd have to re-write the entire table? That's doable-but-not-efficient in my case, but for a really large table I'd think it could approach "horrendous". Ig.
Anyway, it's certainly something I hadn't considered. I guess I'd better re-read the OleDbDataAdapter.Update() documentation again.
Thanks for pointing that out to me. I'll let you know what happens.
Frank McKenney, McKenney Associates Richmond, Virginia / (804) 320-4887 Munged E-mail: frank uscore mckenney ayut minds pring dawt cahm (y'all) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Pierluigi Terzoli |
last post by:
Hi everybody,
I need help for this problem:
I'm using a DataGrid to Insert/Modify/Cancel data from a single table.
At the moment, every cell...
|
by: Karl |
last post by:
Hi C# experts,
I am to C# and .NET.
I am writing a database application using C# and Dataset. In Sql server, I
have a Acount table which...
|
by: pStan |
last post by:
Nubie Question...I'm sure this is simple, but here goes anyway. I have a
small VB.Net application that uses a local Access Database. I want that...
|
by: Frnak McKenney |
last post by:
I'm using an in-core DataSet as an image of my application's
'database' (a multi-table Access97 mdb file). Updates are made to
the DataTables...
|
by: morleyc |
last post by:
Hi, until recently i was quite happy to add data sources from mssql
database in visual studio and drag the datasets directly onto the form
this...
|
by: =?Utf-8?B?Sm9uIEdvbnphbGVz?= |
last post by:
Is it possible in .Net Framework to query only the updated entries in AD?
I'm trying to have sync process with AD, and considering the large number...
|
by: John Sheppard |
last post by:
Hello there,
How do people normally sync datasets between client and webservice? For
example;
I send a dataset to the webservices with updated...
|
by: Peter Duniho |
last post by:
Is there a straightfoward API in .NET that allows for inspection of a
database? That is, to look at the structure of the database, without
knowing...
|
by: MrMancunian |
last post by:
How to create a database connection without using wizards
Introduction
I've seen a lot of questions on the net about getting data from, and...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
| | |