Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

handle to an open file

Status
Not open for further replies.

ceodav

Programmer
Feb 21, 2003
106
IT
hi,
i need to know if a function (API or something else) is able to give me the handle of an opened file (.mdb)
I need it because when it will be closed by the other applicaton i can work on it.
thanks in advantage

ceodav
 
An '.mdb' file is a database, which you shouldn't open and close like a normal file. Use the database's API functions to connect, disconnect and to work with it.

Multiple people can connect to a database simultanously, although you may sometimes have to wait if a particular table (or row) is temporarily locked.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top