vote up 1 vote down star

Given a pre-configured ODBC System DSN, I'd like to write a function that gracefully tests that connection using VBA.

Private Function TestConnection(ByVal dsnName As String) As Boolean

    ' What goes here?? '

End Function

Edit: To clarify, the System DSNs are pointing to external SQL Server 2005 databases, with Windows NT authentication.

One approach I've tried is to send some random query to the target database and catch the error. If the query works, return true. If there's an error then return false. This works just fine but it feels...kludgy. Is there a more elegant way, especially one that doesn't rely on On Error Goto ?

Note: It's a legacy Access 2000 database I'm working on, so any solution can't have any Access 2007 or 2003 dependencies. I'd like to make it generic to VBA, but if there's a simple way in Access that's fine too.

Much obliged for any advice.

flag

55% accept rate

2 Answers

vote up 0 vote down

There no magic function that will test this without actually connecting and trying an operation.

If you feel bad about the random query part - you can query the system tables

For Access

SELECT TOP 1 NAME FROM MSysObjects

For SQL Server

SELECT TOP 1 NAME FROM sysobjects
link|flag
DSNs are pointing to an external SQL Server database. Sorry, should have specified - I'll update the question to reflect. – AR Mar 10 at 21:57
Access cannot use ODBC to connect to a Jet database, so the first is not going to be of any use within Access. – David W. Fenton Mar 14 at 23:22
vote up 5 vote down

Dim cnn As ADODB.Connection
Dim canConnect as Boolean
Set cnn = New ADODB.Connection

cnn.Open "DSN HERE"
If cnn.State = adStateOpen Then
    canConnect = True
    cnn.Close
End If

Msgbox canConnect

EDIT: DSN Format could be "DSN=MyDSN;UID=myuser;PWD=myPwd;"
Look this for connection strings

link|flag
This is a good approach and I had initially accepted it as the answer. However, it still errors out if the "DSN HERE" is an invalid connection string. Methinks ADO needs a TryOpen method! :) – AR Mar 11 at 17:08
DSN should be known before-hand. What is it that you are trying? – shahkalpesh Mar 11 at 17:52

Your Answer

Get an OpenID
or

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