In my win app - I want to display an information (or db icon) if the database server is not reachable. But i dont want to wait the 30sec timeout. The user can configure server, user, pw in my options dialog. So, is there a way in subsonic to check very fast if an db connection works?
|
|
|
|
|
|
|
In the current revision (521) there is an IsOnline() method you can use with the repository pattern. It currently always returns true (see here)...but once that's fixed, you could use the overloaded method that passes in a connection string with a short timeout. |
||
|
|
|
|
You could create a simple ping stored procedure and then execute that with a low timeout on the SQL command, something like:
|
||
|
|
|
|
You could find out some information on the protocol and simply emulate that using TCP sockets. So it's like telneting to a web server and issuing HTTP commands. However, you would do commands appropriate for your sort of database. Doing this you can avoid whatever timeout is built into the driver or whatever. Alternatively, you could simply connect to the IP:Port using TCP and see if anybody is listening. As far as with Subsonic, no. |
||||||||||
|
|
|
Can you set the connection timeout low - see here for an exmaple, or perhaps do it on a background thread, and let the user know it's being tried. |
||
|
|
