fixing simple ; issue with connection string, don't know what happened
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user