C
Chris C.
There doesn't seem to be a proper forum for this question. I first looked at
an ADO.NET forum, where a sticky post referred the kind of question I have to
a SQL server forum, and when I asked there I was told to ask here. It has
nothing to do with Access directly, but ODBC calls from a native C++ app,
using the Microsoft Text Driver. It seemed to be a reasonable way to read a
set of CSV files.
When I do a SELECT on table/file that someone else has open in a text editor
(or possibly Excel) I get:
[Microsoft][ODBC Microsoft Text Driver] The Microsoft Jet database engine
cannot open the file '(unknown)'. It is already opened exclusively by another
user, or you need permission to view its data.
Is there some possible way to open files concurrently using this method? I
will not be updating them with ODBC; they're only being read. So far the only
workaround that seems to work is to set the "readonly" flag on all the files.
This is not terribly onerous since no one should be updating them anyway, but
I'd prefer to not have to rely on that.
an ADO.NET forum, where a sticky post referred the kind of question I have to
a SQL server forum, and when I asked there I was told to ask here. It has
nothing to do with Access directly, but ODBC calls from a native C++ app,
using the Microsoft Text Driver. It seemed to be a reasonable way to read a
set of CSV files.
When I do a SELECT on table/file that someone else has open in a text editor
(or possibly Excel) I get:
[Microsoft][ODBC Microsoft Text Driver] The Microsoft Jet database engine
cannot open the file '(unknown)'. It is already opened exclusively by another
user, or you need permission to view its data.
Is there some possible way to open files concurrently using this method? I
will not be updating them with ODBC; they're only being read. So far the only
workaround that seems to work is to set the "readonly" flag on all the files.
This is not terribly onerous since no one should be updating them anyway, but
I'd prefer to not have to rely on that.