473,608 Members | 2,412 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Comparing 2 datasets...

Hello,

Developing an app where the user fills out a sometimes quite lengthy
form of chkboxes, txtboxes, radbtns, etc. User responses are saved to
a mySql db, which the user can later edit.
When the user chooses to edit, I pull the responses from the db, toss
them in a dataset, check the checks, fill the txtboxes, etc.,etc.
The user then adds, deletes, or changes entries as needed and clicks
the Save Changes button. Here is where the fun begins....
I have to keep track of changes made to the saved form and mark those
items that have 'changed' as well as inserting the new editions to the
database.

My logic so far is this: When they click the Save Changes btn, I throw
all the responses into a new dataset and then compare the original
dataset to the new dataset.
Basically, if an anwer exits in dataset 1 (the original), but not in
dataset 2, that anwer was changed. Conversely, if an answer exits in
dataset 2 (the edited version), but not in dataset1, that answer was
added.

My question is: How can I best compare the 2 datasets, see what has
changed and update the db accordingly, while being minfull that NO
entries can be deleted, only marked as changed or added.

Here is some code that I have tried (from my head):

for i = 0 to dataset1.tables (0).count -1
for j = 0 to dataset2.tables (0).count - 1
if dataset1.tabels (0).rows(i)(3). tostring =
dataset2.tabels (0).rows(j)(3). tostring 'Entry exists in both ds's
exit for
Else
Take action to mark as changed
end if
next
next

As of yet, this does not produce the results I am looking for, and I
can't figure it out. Something wrong with the loop??? I know this is
not very elegant, but if someone could suggest a better way, I am all
ears!!!! Maybe dataset1.Merge( dataset2)????

Thanks for the Help!!!!
(I apologize for the crossposting)

Frank
Jan 24 '06 #1
4 3715
Frank,

You are comparing two datatables which makes a big difference with comparing
two datasets.

I try first to do this kind of things using the datarowcollecti on.find
(giving the row) or the dataview.find (giving the index of the row)

http://msdn2.microsoft.com/en-us/lib...tion.find.aspx

http://msdn.microsoft.com/library/de...sfindtopic.asp

I hope this helps,

Cor
Jan 25 '06 #2
Neo
Frank
This is the exact same situation I am in. I have an app that lets the user
search for a specific record and then update just one of the corresponding
columns. With two buttons I can't access the original dataset through normal
coding. I've yet to find away around this except for the unsucessful
comparing of the 2 datasets. If you have any luck with yours let me know and
I'll do the same.
Thanks

"Cor Ligthert [MVP]" wrote:
Frank,

You are comparing two datatables which makes a big difference with comparing
two datasets.

I try first to do this kind of things using the datarowcollecti on.find
(giving the row) or the dataview.find (giving the index of the row)

http://msdn2.microsoft.com/en-us/lib...tion.find.aspx

http://msdn.microsoft.com/library/de...sfindtopic.asp

I hope this helps,

Cor

Jan 25 '06 #3

Neo,

I will keep you posted on progress. At this point, my method works,
but only if the user changes more than 1 item. For some reason, it
fails if there is only 1 change. I think the route I am going to
attempt next is along the lines of what Cor suggested: Search for
matching datarows. Something like this:

dim dr as datarow
dim drChg as datarow
for each dr in dt1
drChg = Dt2.Rows.Find(d r.Item(Some Criteria))
If drChg Is Nothing Then
dt3t.Rows.Add(d r)
Else
...
End If
next
(Or something thereabouts...)
Will let you know how it works..

On Wed, 25 Jan 2006 08:10:04 -0800, Neo
<Ne*@discussion s.microsoft.com > wrote:
Frank
This is the exact same situation I am in. I have an app that lets the user
search for a specific record and then update just one of the corresponding
columns. With two buttons I can't access the original dataset through normal
coding. I've yet to find away around this except for the unsucessful
comparing of the 2 datasets. If you have any luck with yours let me know and
I'll do the same.
Thanks

"Cor Ligthert [MVP]" wrote:
Frank,

You are comparing two datatables which makes a big difference with comparing
two datasets.

I try first to do this kind of things using the datarowcollecti on.find
(giving the row) or the dataview.find (giving the index of the row)

http://msdn2.microsoft.com/en-us/lib...tion.find.aspx

http://msdn.microsoft.com/library/de...sfindtopic.asp

I hope this helps,

Cor


Jan 25 '06 #4
Cor,

Thanks for the help. Think I will take your very sage advice and try
something similar to what you suggest.

Thanks again!!

On Wed, 25 Jan 2006 09:16:41 +0100, "Cor Ligthert [MVP]"
<no************ @planet.nl> wrote:
Frank,

You are comparing two datatables which makes a big difference with comparing
two datasets.

I try first to do this kind of things using the datarowcollecti on.find
(giving the row) or the dataview.find (giving the index of the row)

http://msdn2.microsoft.com/en-us/lib...tion.find.aspx

http://msdn.microsoft.com/library/de...sfindtopic.asp

I hope this helps,

Cor


Jan 25 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
10419
by: Eric | last post by:
Hello, I am trying to write a webservice to compare 2 datasets, one recieved from a client, and the other taken from a database on the webserver. Sofar, I have had little success in accomplishing that, but that may be due to the fact that I'm a relative newbie on C# :-) Does anybody have a clue, a hint, or maybe even some sample code?
4
1728
by: Alpha | last post by:
I have a small Window application and through out the different forms I create a different dataset. At the begining I used the Tools to drag and drop the SqlDataAdapter, connection and dataset objects to the frist few forms but then later I removed those and created these objects in my code. I now see 3 datasets in the Solution Explorer panel part but not all the datasets that I have in my codes. Are these 3 datasets leftover from the...
0
1278
by: Elliot M. Rodriguez | last post by:
I can accomplish this relatively easily but inefficiently, and it seems like a hack, but I cant think of a better workaround. Hopefully someone else here can. My task is to perform an update on a dataset retrieved from SQL Server 2000 using a stored procedure. This is the base dataset. Users will send an Excel document up to a webserver and that excel document, which matches the schema of the SQL dataset (few differences but nothing ...
19
2968
by: Will Lastname | last post by:
In one of the applications that I'm working on I have 2 sets of functions that build different datasets. Imagine 4 columns in a datagrid. Inside those 4 columns I have nested datalists. Two of the datalists' datasources point to database A and the other two point to database B. This effect allows the client to perform a side-by-side comparison of the same product so that records can be updated accordingly. It's easy enough to scroll down...
9
2895
by: GaryDean | last post by:
We have been noticing that questions on vs.2005/2.0 don't appear to get much in answers so I'm reposting some questions posted by some of the programmers here in our organization that never got answered... There are articles on the new TableAdapters where it says that a key new advantage is that a single TableAdapter, which can have multiple queries, can be used on multiple forms. Now that was in an article on using TableAdapters with...
0
1214
by: S.Tedeschi | last post by:
Hi all; as posted some days ago, I'm converting an on-line app; I used to heavily rely on strongly-typed DataSets directly dropped onto pages, and so viewed by code(-behind) as well. In the next two weeks I discovered that such objects are no more directly usable in pages, namely in DataGrid which don't see them any more. Even if rebuilt in Component Designer, and so visible in code, DataSets are invisible in Page Designer, so now it's...
5
1850
by: Franck | last post by:
how come unchanged always true even if data changed This code come from my saving button: ============================================ DataSet ds1 = new DataSet(); DataSet ds2 = new DataSet(); DataSet ds3 = new DataSet(); //Static Dataset which contain values when my form load
12
3578
by: BillE | last post by:
I'm trying to decide if it is better to use typed datasets or business objects, so I would appreciate any thoughts from someone with more experience. When I use a business object to populate a gridview, for example, I loop through a datareader, populating an array list with instances of a custom class in the middle tier, and then send the array list up to the presentation layer and bind the gridview to it. If I use a typed dataset, I...
9
1936
by: gardnern | last post by:
We have X number of data sets, of Y length each. For example... Small, Medium, Large and Red, Green, Blue, Yellow We need to generate a list of all possibilities Small Red
0
8067
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8483
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8157
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6820
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6015
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5479
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2477
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1336
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.