CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 1999
    Posts
    10

    simultaneous db access

    is it possible for two users to simultaneouly modify the same record in a database in case of dynaset type of database? what happens in such a situation?


  2. #2
    Guest

    Re: simultaneous db access

    According to help, one of them locks the record, and the other gets error if he tries to update it. So the help advises to check CanUpdate() before updating.


  3. #3
    Join Date
    Jun 1999
    Posts
    10

    Re: simultaneous db access

    how can the recordset be locked in such a case?


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

Featured