Results 1 to 6 of 6

Thread: Concurrent Data Usage

  1. #1

    Thread Starter
    Frenzied Member yrwyddfa's Avatar
    Join Date
    Aug 2001
    Location
    England
    Posts
    1,253

    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

  2. #2
    Frenzied Member
    Join Date
    Feb 2003
    Location
    Argentina
    Posts
    1,950

    Re: Concurrent Data Usage

    By rolling back every transaction.
    Tengo mas preguntas que contestas

  3. #3
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Concurrent Data Usage

    Quote 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"?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  4. #4

    Thread Starter
    Frenzied Member yrwyddfa's Avatar
    Join Date
    Aug 2001
    Location
    England
    Posts
    1,253

    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

  5. #5
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Concurrent Data Usage

    This may impart some important info...
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  6. #6
    Hyperactive Member
    Join Date
    Feb 2006
    Location
    Philippines
    Posts
    468

    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
  •  



Click Here to Expand Forum to Full Width