Example #1
0
 public DBTableView(Table tb, bool isSource, DifferencesType dt, string connectStr = "", string compareConnectStr = "")
 {
     DBTable              = tb;
     IsSourceDB           = isSource;
     Differences          = dt;
     ConnectString        = connectStr;
     CompareConnectString = compareConnectStr;
 }
Example #2
0
 public DBVWView(View view, bool isSource, DifferencesType dt, string connectStr = "", string compareConnectStr = "")
 {
     DBView               = view;
     IsSourceDB           = isSource;
     Differences          = dt;
     ConnectString        = connectStr;
     CompareConnectString = compareConnectStr;
 }
Example #3
0
 public DBFunctionView(UserDefinedFunction function, bool isSource, DifferencesType dt, string connectStr = "", string compareConnectStr = "")
 {
     DBFunction           = function;
     IsSourceDB           = isSource;
     Differences          = dt;
     ConnectString        = connectStr;
     CompareConnectString = compareConnectStr;
 }
Example #4
0
 public DBProcedureView(StoredProcedure procedure, bool isSource, DifferencesType dt, string connectStr = "", string compareConnectStr = "")
 {
     DBStoredProcedure    = procedure;
     IsSourceDB           = isSource;
     Differences          = dt;
     ConnectString        = connectStr;
     CompareConnectString = compareConnectStr;
 }