Connecting Tech Pros Worldwide Forums | Help | Site Map

Microsoft Jet database engine cannot find the input table or query

Newbie
 
Join Date: Sep 2007
Posts: 1
#1: Sep 19 '07
SELECT ProjectID, ProjectName, ProjectDescription, SequenceNumber, LastUpdateDate
FROM Project
WHERE ProjectID = @ProjectID;

(The Microsoft Jet database engine cannot find the input table or query 'Project'.
Make sure it exists and that its name is spelled correctly.)

msquared's Avatar
Administrator
 
Join Date: Aug 2006
Location: Dublin, Ireland
Posts: 10,886
#2: Sep 19 '07

re: Microsoft Jet database engine cannot find the input table or query


Quote:

Originally Posted by babyjek

SELECT ProjectID, ProjectName, ProjectDescription, SequenceNumber, LastUpdateDate
FROM Project
WHERE ProjectID = @ProjectID;

(The Microsoft Jet database engine cannot find the input table or query 'Project'.
Make sure it exists and that its name is spelled correctly.)

OK the obvious questions.

Have you got a table named Project? Check the spelling including capital letters etc.
Is it a local table in your Access database or is it linked?
Reply