tags:

views:

44

answers:

2

VB6: what is the likely cause of Error 3078 " ... Jet database engine cannot find the input table or query ... "

+2  A: 

A typo in the table name.

SLaks
or someone was in your jet, eating your lap-tables
pst
@slaks: problem is intermittent - not consistent with a typo in any SQL.
Craig Johnston
I've seen this in programs that cobble SQL together on the fly in several parts of the program. Some code paths will result in a clean query while others lead to a fragmentary result that produces syntax errors or this sort of error.
Bob Riemersma
+1  A: 

Try checking the connection and checking the database for corruption, that is, back up and then compact and repair. You might also like to read this article on corruption

Remou