ASP.NET with Access: concurrent users?

S

Steven Spits

Hi group,

My ASP.NET application connects to an Access database using OleDb. This is
my connection string:

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\xxx\yyy\zzz.mdb;

From time to time I'm getting an [OleDbException (0x80004005): Unspecified
error] when trying to open the connection to this database.

Using Google, this seems to be a read/write security thing. However, my
application works 90% of the time, so read/write access should be okay.

I'm suspecting it has something to do with concurrent users. How does Access
handle this? Can two users open the same MDB at the same time? My
application only executes SELECT-statements.

Steven

- - -
 
P

Paul Clement

¤ Hi group,
¤
¤ My ASP.NET application connects to an Access database using OleDb. This is
¤ my connection string:
¤
¤ Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\xxx\yyy\zzz.mdb;
¤
¤ From time to time I'm getting an [OleDbException (0x80004005): Unspecified
¤ error] when trying to open the connection to this database.
¤
¤ Using Google, this seems to be a read/write security thing. However, my
¤ application works 90% of the time, so read/write access should be okay.
¤
¤ I'm suspecting it has something to do with concurrent users. How does Access
¤ handle this? Can two users open the same MDB at the same time? My
¤ application only executes SELECT-statements.

See if the following helps:

PRB: "Disk or Network Error" or "Unspecified Error" Returned when Using Jet
http://support.microsoft.com/default.aspx?kbid=251254


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top