| |
varcesi
Posts: 12
Score: 0
Joined: 5/23/2001
From: Italy
Status: offline
|
on error resume next 'turn errors off rs.open "SELECT top 1 FROM tableInQuestion" if err.number <> 0 then 'see if there was an error 'apparently, the table doesn't exist else 'apparently, the table does exist end if err.clear 'clear any error messages on error goto 0 'turn errors back on There may be a more elegant way to do it, but this would work.
|
|