i'm writing an application where user provides a conenction string manually and i'm wondering if there is any way that i could validate the connection string - i mean check if it's proper and if the database exists.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could try to connect? For quick (offline) validation, perhaps use
But to check whether the db exists, you'll need to try to connect. Simplest if you know the provider, of course:
If you only know the provider as a string (at runtime), then use
|
|||||||||||
|