dharkangel
MIS
Hi,
I have a simple ASP page running on an Windows XP professional box, with IIS 5.1, with MS Access 2003. I keep getting this error:
Microsoft JET Database Engine (0x80040E37)
The Microsoft Jet database engine cannot find the input table or query 'Barcelona Internal Actions: All Issues'. Make sure it exists and that its name is spelled correctly.
/metrics/metrics.asp, line 15
This doesn't make any sense because as you'll see from my code there is no reference to 'Barcelona Internal Actions: All Issues'. The table 'BarcelonaInternalActions' is a linked table that used to be called 'Barcelona Internal Actions: All Issues'.
Below is my code:
<%
'Create database connection the object
set actionsDB = Server.CreateObject("ADODB.Connection")
'Open the connection
actionsDB.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:/Inetpub/
set actionSet = Server.CreateObject("ADODB.RecordSet")
mySQL = "Select * from BarcelonaInternalActions"
with actionSet
.ActiveConnection = actionsDB
.Source = mySQL
.Open \\this is where the error is happening
End with
%>
<html>
<head><title>test</title></head>
<body>
this is a test new2
</body>
</html>
<%
actionSet.Close
set actionSet = Nothing
'Close the connection
actionsDB.Close
'Destroy the connection
set actionsDB = Nothing
%>
I have a simple ASP page running on an Windows XP professional box, with IIS 5.1, with MS Access 2003. I keep getting this error:
Microsoft JET Database Engine (0x80040E37)
The Microsoft Jet database engine cannot find the input table or query 'Barcelona Internal Actions: All Issues'. Make sure it exists and that its name is spelled correctly.
/metrics/metrics.asp, line 15
This doesn't make any sense because as you'll see from my code there is no reference to 'Barcelona Internal Actions: All Issues'. The table 'BarcelonaInternalActions' is a linked table that used to be called 'Barcelona Internal Actions: All Issues'.
Below is my code:
<%
'Create database connection the object
set actionsDB = Server.CreateObject("ADODB.Connection")
'Open the connection
actionsDB.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:/Inetpub/
set actionSet = Server.CreateObject("ADODB.RecordSet")
mySQL = "Select * from BarcelonaInternalActions"
with actionSet
.ActiveConnection = actionsDB
.Source = mySQL
.Open \\this is where the error is happening
End with
%>
<html>
<head><title>test</title></head>
<body>
this is a test new2
</body>
</html>
<%
actionSet.Close
set actionSet = Nothing
'Close the connection
actionsDB.Close
'Destroy the connection
set actionsDB = Nothing
%>