fixing simple ; issue with connection string, don't know what happened

This commit is contained in:
2020-02-16 22:58:34 -05:00
parent 734a940266
commit 3b8e4f3e5a

View File

@@ -330,14 +330,14 @@ namespace Sdaleo
// Should we use User Instance? // Should we use User Instance?
if (UserInstance && !String.IsNullOrEmpty(AttachDBFilename)) if (UserInstance && !String.IsNullOrEmpty(AttachDBFilename))
{ {
string strAddMore = String.Format(@"User Instance={0};AttachDBFilename={1}", UserInstance.ToString(), AttachDBFilename); string strAddMore = String.Format(@"User Instance={0};AttachDBFilename={1};", UserInstance.ToString(), AttachDBFilename);
strUDL += strAddMore; strUDL += strAddMore;
} }
// Should we use Integrated Security? // Should we use Integrated Security?
if (TrustedConnection && !String.IsNullOrEmpty(IntegratedSecurity)) if (TrustedConnection && !String.IsNullOrEmpty(IntegratedSecurity))
{ {
string strAddMore = String.Format(@"Trusted_Connection={0};Integrated Security={1}", TrustedConnection.ToString(), IntegratedSecurity); string strAddMore = String.Format(@"Trusted_Connection={0};Integrated Security={1};", TrustedConnection.ToString(), IntegratedSecurity);
strUDL += strAddMore; strUDL += strAddMore;
} }