I'd like to find an easy way to find out if a record in SSCE was changed by
the user in my VB .NET app.

I'm thinking of filling a DataSet object with the original record, show the
record to the user for editing, and then after the user is done, filling
another DataSet object with the record from the DB and looping through the
columns in the 2 DataSets to see if anything has changed.

It would be cool if you could do a DataSet.CompareToDB to find out if the
DataSet you have is still the same as in the underlying database.

Does anyone know a better way to do this?