# | Line 25 | Line 25 | namespace AnywhereTS | |
---|---|---|
25 | SqlConnection sqlCon = new SqlConnection(); | |
26 | try | |
27 | { | |
28 | < | sqlCon.ConnectionString = Properties.Settings.Default.atsConnectionString; |
28 | > | sqlCon = new SqlConnection(Properties.Settings.Default.atsConnectionString.Replace("AnywhereTS", "master")); |
29 | sqlCon.Open(); | |
30 | } | |
31 | catch (SqlException sql_ex) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |