If the table does not exist, the query statement fails.
That's different from the action failing.
For example, if you use:
strSql "UPDATE Table1 SET Field99 = 0;"
but there is no field named Field99, the execute fails with a parameter
error, even if you don't use dbFailOnError.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> My code works, but am I doing something slightly wrong? If the table
> doesn't exist an error is raised. Notice, I didn't specify the
[quoted text clipped - 19 lines]
> Thanks,
> David
David Mueller - 15 Aug 2006 13:17 GMT
Oh yeah, that makes sense. Thanks.
> If the table does not exist, the query statement fails.
> That's different from the action failing.
[quoted text clipped - 27 lines]
> > Thanks,
> > David