J
James Houston
I posted this message several days ago and someone suggested that the error
was because someone else had the db open exclusively. That's not the case
here, since I'm the only one currently using this db. I'm hoping someone
might have some other ideas about what might be going on.
I'm trying to connect to an Access DB on my web site. I used FrontPage
2000's Database Results wizard, but the page it built just doesn't have the
features I need, so I've started setting up a page by hand. I snagged the
connection string out of the global.asa file and pasted it into my ASP code
like so:
dim sCon 'ado connection string
dim adoConn 'ado connection
set adoConn = server.createobject("adodb.connection")
sCon = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=URL=CurrentShipped.mdb"
adoconn.open sCon
Which generates the following error message:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x958 Thread 0xcf0
DBC 0x24cfafd4 Jet'.
/test.asp, line 95
Anybody know what I'm doing wrong and how to fix it? Any help would be
greatly appriciated.
Best,
JIm
was because someone else had the db open exclusively. That's not the case
here, since I'm the only one currently using this db. I'm hoping someone
might have some other ideas about what might be going on.
I'm trying to connect to an Access DB on my web site. I used FrontPage
2000's Database Results wizard, but the page it built just doesn't have the
features I need, so I've started setting up a page by hand. I snagged the
connection string out of the global.asa file and pasted it into my ASP code
like so:
dim sCon 'ado connection string
dim adoConn 'ado connection
set adoConn = server.createobject("adodb.connection")
sCon = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=URL=CurrentShipped.mdb"
adoconn.open sCon
Which generates the following error message:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x958 Thread 0xcf0
DBC 0x24cfafd4 Jet'.
/test.asp, line 95
Anybody know what I'm doing wrong and how to fix it? Any help would be
greatly appriciated.
Best,
JIm