Hello fellow programmers

I have been searching the internet for a few days now and can't find a generic method to solve this with only ODBC and SQL.

Is there a way to see if a database already exist, only using ODBC. It has to be standard SQL because the user can chose a DSN of his choice (meaning his own SQL Server).

This means I can't check the master table on the server because they are named different on different SQL servers.

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Don't know if this is too late, or even sufficiently "portable" for you.

I only have to deal with MS SQL, and in a past application used SELECT name FROM master.dbo.sysdatabases WHERE name = @name.

But in a new one I am using the ODBC SQLBrowseConnect (passing in server name & credentials) to get a list of databases in the server. So I just look through those. I think the original code for that was from http://www.codeproject.com/KB/database/sqlsrvenumerator.aspx.

I'm no ODBC expert, so I don't know what that requires to be running on the server (e.g. SQL Browser service) or how it compares in approach/is implemented. In fact, I wouldn't mind if anyone else comments as to whether it's any good/better! But it seems to be pure ODBC-only!

link|improve this answer
Yes, SQLBrowseConnect is the API to use, I have found the information I need to browse databases and tables. I will post a code example later when I have tested it in practice. Thank you! – Max Kielland Dec 5 '10 at 23:44
feedback

Your Answer

 
or
required, but never shown

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