Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

very weird linked table problem

Status
Not open for further replies.
Sep 25, 2002
159
US
Hi,

I am trying to do a simple select statement on an asp page from an access database. The database has a linked table in it. When I imported the table, I renamed it from the long default name access gave it: 'Action Items: All Issues' to 'QPTActions'. When I run the asp page I get the following error:

The Microsoft Jet database engine cannot find the input table or query 'Action Items: All Issues'.

This doesn't make any sense since I renamed the table as soon as I imported it as a linked table. Below is my code:

Set metricsDB = Server.CreateObject("ADODB.Connection")
strSQL = "SELECT [Issue ID] FROM QPTActions"
'Open the connection
metricsDB.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Inetpub\set userSet = metricsDB.Execute(strSQL)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top