Access .ldb file & multiple connection.

Posted by bMathew on Stack Overflow See other posts from Stack Overflow or by bMathew
Published on 2012-11-15T19:05:07Z Indexed on 2012/11/16 5:00 UTC
Read the original article Hit count: 132

Filed under:
|
|

I have an API which opens an access database for read and write. The API opens the connection when it's constructed and closes the connection when it's destructed. When the db is opened an .ldb file is created and when it closes it's removed (or disappears).

There are multiple applications using the API to read and write to the access db. I want to know:

  1. Is ldb file used to track multiple connections
  2. Does calling an db.close() closes all connections or just one instance.
  3. Will there be any sync issues with the above approach.

© Stack Overflow or respective owner

Related posts about c++

Related posts about ms-access