----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: _Neeraj_ Message 6 in Discussion To manage the proper update you should verify that the data you are modifying is not been modified by some other user. For that what you can propabe do is : Add a Timestamp column in your table in the database and fetch that value while getting other details and while updating it back - before making the actual updation match that column's value and if it is same then do your update ( don't forget to modify the timestamp column here) and if it is not the same then probably some other user has modified that record, so notify this to current user. If you feel umcomfortable with the timestamp column probably you can create a column of the type DateTime, for your purpose. Regards, Neeraj Saluja ----- Original Message ----- From: Jacob <[EMAIL PROTECTED]> Date: Wed, 4 Aug 2004 23:37:35 -0700 Subject: Re: dataset update/delete To: BDOTNET <[EMAIL PROTECTED]> New Message on BDOTNET dataset update/delete Reply Reply to Sender Recommend Message 3 in Discussion From: Jacob Hi all, I have a dataset in my aspx page, which is populated from sql server database, I have done add/edit/delete on my dataset and update it to database, if the same time another user do the same operations , then how can we manage the proper update ?? can anybody explain it ? What's concurrency exception ? Thanks, Jacob View other groups in this category. Also on MSN: Start Chatting | Listen to Music | House & Home | Try Online Dating | Daily Horoscopes To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. Need help? If you've forgotten your password, please go to Passport Member Services. For other questions or feedback, go to our Contact Us page. If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. Remove my e-mail address from BDOTNET. ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
