Ejemplo n.º 1
0
        private static SqlConnection MakeConnection(SQLServerDatabase sql)
        {
            string connectionString;

            if (string.IsNullOrEmpty(sql.dtSource))
            {
                return(null);
            }
            if (string.IsNullOrEmpty(sql.dbName))
            {
                connectionString = @"Data Source=" + sql.dtSource + "; Integrated Security = True";
            }
            else if (string.IsNullOrEmpty(sql.userName) && string.IsNullOrEmpty(sql.password))
            {
                connectionString = @"Data Source=" + sql.dtSource + ";Initial Catalog=" + sql.dbName + "; Integrated Security = True";
            }
            else
            {
                connectionString = @"Data Source=" + sql.dtSource + ";Initial Catalog=" + sql.dbName + ";User ID=" + sql.userName
                                   + ";Password="******"; Integrated Security = True";
            }

            return(new SqlConnection(connectionString));
        }
Ejemplo n.º 2
0
 public static SqlConnection GetConnection(SQLServerDatabase sql)
 {
     connection = MakeConnection(sql);
     return(connection);
 }