Skip to content

Commit fa8f261

Browse files
Version 1.0.2020.1012
Added support for Windows Authentication for SQL server Fixed bug when changing delta row type between DateTime and Rowversion Streamlined and cleaned up logging
1 parent 297705f commit fa8f261

17 files changed

+1109
-306
lines changed

Granfeldt.SQL.MA/Configuration.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public enum DeltaColumnType
4343
public static class Configuration
4444
{
4545
public static string ConnectionString = "data source=192.168.0.225;initial catalog=test;persist security info=true;user id={username};password={password};multipleactiveresultsets=true";
46+
public static string TypeOfAuthentication = Configuration.Parameters.AuthenticationTypeSQL;
4647
public static string UserName = "sa";
4748
public static string Password = "";
4849
public static string Domain = "";
@@ -138,8 +139,14 @@ public static bool HasDeltaColumn
138139
public static class Parameters
139140
{
140141
public const string ConnectionString = "Connection string";
142+
public const string TypeOfAuthentication = "Authentication Type";
143+
144+
public const string AuthenticationTypeSQL = "SQL";
145+
public const string AuthenticationTypeWindows = "Windows";
146+
141147
public const string Username = "Username";
142148
public const string Password = "Password";
149+
public const string Domain = "Domain";
143150
public const string SchemaConfiguration = "Schema Configuration";
144151

145152
public const string TableNameSingleValue = "Tablename";

0 commit comments

Comments
 (0)