vote up 2 vote down star

I know this is similar to this question, but I'm using SQL Server CE 3.5 with a WinForms project in C#. How can I determine whether a table exists? I know the IF keyword is not supported, though EXISTS is. Does information_schema exist in CE where I can query against it? Thanks.

flag

55% accept rate

2 Answers

vote up 5 vote down check

Yes, it does exist:

SELECT *
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = 'TableName'
link|flag
vote up 0 vote down

Funny how I can never find these things on the MSDN site until I post here. Thanks, Mehrdad.

link|flag
You're welcome. This should be a comment though, not an answer. Using an answer to post comments will clutter up SO. – Mehrdad Afshari Jan 10 '09 at 20:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.