Hey guys,
I am writing a C# program that accesses my Access DB.
What is the SQL query that figures out whether a certain table exists in the DB?
Thanks
Hey guys,
I am writing a C# program that accesses my Access DB.
What is the SQL query that figures out whether a certain table exists in the DB?
Thanks
Try merely opening the table and trapping the error if it doesn't exist. Close it, of course, if it exists.
That what I did. works perfectly![]()