|
-
Apr 11th, 2006, 11:17 AM
#1
Thread Starter
Frenzied Member
Concurrent Data Usage
Just a quick straw poll . . . .
How do you guys achieve resilience in the face that multiple users can change records at the same time?
"As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality." - Albert Einstein
It's turtles! And it's all the way down
-
Apr 11th, 2006, 11:52 AM
#2
Frenzied Member
Re: Concurrent Data Usage
By rolling back every transaction.
Tengo mas preguntas que contestas
-
Apr 11th, 2006, 11:30 PM
#3
Re: Concurrent Data Usage
 Originally Posted by yrwyddfa
Just a quick straw poll . . . .
How do you guys achieve resilience in the face that multiple users can change records at the same time?
Is that supposed to be "change the same record at the same time"?
-
Apr 12th, 2006, 02:47 AM
#4
Thread Starter
Frenzied Member
Re: Concurrent Data Usage
Sort of.
Two (or more) users both working on the same set of data. How do you manage the updates?
"As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality." - Albert Einstein
It's turtles! And it's all the way down
-
Apr 12th, 2006, 04:39 AM
#5
Re: Concurrent Data Usage
This may impart some important info...
-
Apr 13th, 2006, 04:20 AM
#6
Hyperactive Member
Re: Concurrent Data Usage
Sort of.
Two (or more) users both working on the same set of data. How do you manage the updates?
i used transaction method on update,delete and insert method
when the record was locked by the first user and some user also modifying the same record you can rollback transaction to those other user as the error fires "row cannot be located ....." something like that on bound controls or " currently lock" on adodb.connection, and then issue the requery to read the updated values..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|