

StringBuilder strConn = new StringBuilder();
strConn.Append("Data Source = (DESCRIPTION=");
strConn.Append("(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)");
strConn.Append("(HOST=" + ConfigHost + ")");
strConn.Append("(PORT=" + ConfigProt + ")))");
strConn.Append("(CONNECT_DATA=(SERVER=DEDICATED)");
strConn.Append("(SERVICE_NAME=" + ConfigSid + ")));");
strConn.Append("User Id = ");
strConn.Append(ConfigUser);
strConn.Append("; ");
strConn.Append("Password = ");
strConn.Append(ConfigPassword);
strConn.Append(";");