A family of Microsoft relational database management systems designed for ease of use.
Thanks Bill.
Do you have any examples of the code for the timeout?
What does your code look like now? Usually you just add the ConnectTimeout. But there are lots of ways to connect. Here is one example Where a user name and password are needed.
Dim cnn As ADODB.Connection
'Prompt for username and password (set prompt first):
cnn.Provider = "sqloledb"
cnn.Properties("Prompt") = adPromptAlways
cnn.ConnectionTimeout = 30
cnn.Open "Data Source=MySever;Initial Catalog=MyDatabase;"
A good source for connection strings is http://www.carlprothman.net/Default.aspx?tabid=81