Program to test a SQL connection string?

sql

Solution

You can make one yourself in 20sec. For example in C# - Create a new WinForms application - Create a new SqlConnection(connectionString) - Exception => Bad connection string - All ok => Good connection string

SqlConnection conn = null;

try {
  conn = new SqlConnection("connection string here");
  conn.Open();
  // Good connection string
} catch (SqlException sqlE) {
  // Bad connection string
} finally {
  if (conn != null) conn.Dispose();
}

Problem

I need a free and quick to download program that can test a connection string.

Original source