I'm doing an application to show data from a mdb file, it works on a copy of the db, but, when I try to use the one that updates the data, it tells me that the database is already in use.
I use an odbc connection with this configuration:
Driver = 'Microsoft Access Driver (*.mdb)'
Params.Strings = (
'DBQ=Data.mdb'
'Locale Identifier=1031'
'ExtendedAnsiSQL=1'
'CHARSET=ansi'
)
Is there any way to read this mdb file, the copy is not an option, I need to read every 10 seconds and the file is ... more than 100MB.
Than you very much.