コード例 #1
0
ファイル: RoundhousETask.cs プロジェクト: binarymash/dropkick
 public RoundhousETask(DbConnectionInfo connectionInfo, string scriptsLocation, string environmentName, RoundhousEMode roundhouseMode, DatabaseRecoveryMode recoveryMode, string restorePath, int restoreTimeout, string restoreCustomOptions, string repositoryPath, string versionFile, string versionXPath, int commandTimeout, int commandTimeoutAdmin, string functionsFolderName, string sprocsFolderName, string viewsFolderName, string upFolderName, string versionTable, string scriptsRunTable, string scriptsRunErrorTable, bool? warnOnOneTimeScriptChanges, string outputPath, 
     string alterDatabaseFolderName, string runAfterCreateDatabaseFolderName, string runBeforeUpFolderName, string runFirstAfterUpFolderName, string indexesFolderName, string runAfterOtherAnyTimeScriptsFolderName, string permissionsFolderName)
 {
     _connectionInfo = connectionInfo;
     _scriptsLocation = scriptsLocation;
     _environmentName = environmentName;
     _recoveryMode = recoveryMode;
     _roundhouseMode = roundhouseMode;
     _restorePath = restorePath;
     _restoreTimeout = restoreTimeout;
     _restoreCustomOptions = restoreCustomOptions;
     _repositoryPath = repositoryPath;
     _versionFile = versionFile;
     _versionXPath = versionXPath;
     _commandTimeout = commandTimeout;
     _commandTimeoutAdmin = commandTimeoutAdmin;
     _alterDatabaseFolderName = alterDatabaseFolderName;
     _runAfterCreateDatabaseFolderName = runAfterCreateDatabaseFolderName;
     _runBeforeUpFolderName = runBeforeUpFolderName;
     _upFolderName = upFolderName;
     _runFirstAfterUpFolderName = runFirstAfterUpFolderName;
     _functionsFolderName = functionsFolderName;
     _viewsFolderName = viewsFolderName;
     _sprocsFolderName = sprocsFolderName;
     _indexesFolderName = indexesFolderName;
     _runAfterOtherAnyTimeScriptsFolderName = runAfterOtherAnyTimeScriptsFolderName;
     _permissionsFolderName = permissionsFolderName;
     _versionTable = versionTable;
     _scriptsRunTable = scriptsRunTable;
     _scriptsRunErrorTable = scriptsRunErrorTable;
     _warnOnOneTimeScriptChanges = warnOnOneTimeScriptChanges;
     _outputPath = outputPath;
 }
コード例 #2
0
ファイル: RoundhousETask.cs プロジェクト: yonglehou/dropkick
 public RoundhousETask(DbConnectionInfo connectionInfo, string scriptsLocation, string environmentName, RoundhousEMode roundhouseMode, DatabaseRecoveryMode recoveryMode, string restorePath, int restoreTimeout, string restoreCustomOptions, string repositoryPath, string versionFile, string versionXPath, int commandTimeout, int commandTimeoutAdmin, string functionsFolderName, string sprocsFolderName, string viewsFolderName, string upFolderName, string versionTable, string scriptsRunTable, string scriptsRunErrorTable, bool?warnOnOneTimeScriptChanges, string outputPath)
 {
     _connectionInfo             = connectionInfo;
     _scriptsLocation            = scriptsLocation;
     _environmentName            = environmentName;
     _recoveryMode               = recoveryMode;
     _roundhouseMode             = roundhouseMode;
     _restorePath                = restorePath;
     _restoreTimeout             = restoreTimeout;
     _restoreCustomOptions       = restoreCustomOptions;
     _repositoryPath             = repositoryPath;
     _versionFile                = versionFile;
     _versionXPath               = versionXPath;
     _commandTimeout             = commandTimeout;
     _commandTimeoutAdmin        = commandTimeoutAdmin;
     _functionsFolderName        = functionsFolderName;
     _sprocsFolderName           = sprocsFolderName;
     _viewsFolderName            = viewsFolderName;
     _upFolderName               = upFolderName;
     _versionTable               = versionTable;
     _scriptsRunTable            = scriptsRunTable;
     _scriptsRunErrorTable       = scriptsRunErrorTable;
     _warnOnOneTimeScriptChanges = warnOnOneTimeScriptChanges;
     _outputPath = outputPath;
 }
コード例 #3
0
ファイル: RoundhousETask.cs プロジェクト: drusellers/dropkick
 public RoundhousETask(string connectionString, string scriptsLocation, string environmentName, RoundhousEMode roundhouseMode, DatabaseRecoveryMode recoveryMode, string restorePath, string repositoryPath, string versionFile, string versionXPath)
 {
     _connectionString = connectionString;
     _scriptsLocation = scriptsLocation;
     _environmentName = environmentName;
     _recoveryMode = recoveryMode;
     _roundhouseMode = roundhouseMode;
     _restorePath = restorePath;
     _repositoryPath = repositoryPath;
     _versionFile = versionFile;
     _versionXPath = versionXPath;
 }
コード例 #4
0
ファイル: RoundhousETask.cs プロジェクト: peterbeams/dropkick
 public RoundhousETask(string connectionString, string scriptsLocation, string environmentName, RoundhousEMode roundhouseMode, DatabaseRecoveryMode recoveryMode, string restorePath, int restoreTimeout, string restoreCustomOptions, string repositoryPath, string versionFile, string versionXPath,int commandTimeout, int commandTimeoutAdmin)
 {
     _connectionString = connectionString;
     _scriptsLocation = scriptsLocation;
     _environmentName = environmentName;
     _recoveryMode = recoveryMode;
     _roundhouseMode = roundhouseMode;
     _restorePath = restorePath;
     _restoreTimeout = restoreTimeout;
     _restoreCustomOptions = restoreCustomOptions;
     _repositoryPath = repositoryPath;
     _versionFile = versionFile;
     _versionXPath = versionXPath;
     _commandTimeout = commandTimeout;
     _commandTimeoutAdmin = commandTimeoutAdmin;
 }
コード例 #5
0
ファイル: RoundhousETask.cs プロジェクト: mpareja/dropkick
 public RoundhousETask(string connectionString, string scriptsLocation, string environmentName, RoundhousEMode roundhouseMode, DatabaseRecoveryMode recoveryMode, string restorePath, int restoreTimeout, string restoreCustomOptions, string repositoryPath, string versionFile, string versionXPath, int commandTimeout, int commandTimeoutAdmin, string functionsFolderName, string sprocsFolderName, string viewsFolderName, string upFolderName, string versionTable, string scriptsRunTable, string scriptsRunErrorTable, bool? warnOnOneTimeScriptChanges)
 {
     _connectionString = connectionString;
     _scriptsLocation = scriptsLocation;
     _environmentName = environmentName;
     _recoveryMode = recoveryMode;
     _roundhouseMode = roundhouseMode;
     _restorePath = restorePath;
     _restoreTimeout = restoreTimeout;
     _restoreCustomOptions = restoreCustomOptions;
     _repositoryPath = repositoryPath;
     _versionFile = versionFile;
     _versionXPath = versionXPath;
     _commandTimeout = commandTimeout;
     _commandTimeoutAdmin = commandTimeoutAdmin;
     _functionsFolderName = functionsFolderName;
     _sprocsFolderName = sprocsFolderName;
     _viewsFolderName = viewsFolderName;
     _upFolderName = upFolderName;
     _versionTable = versionTable;
     _scriptsRunTable = scriptsRunTable;
     _scriptsRunErrorTable = scriptsRunErrorTable;
     _warnOnOneTimeScriptChanges = warnOnOneTimeScriptChanges;
 }
コード例 #6
0
 public RoundhousEOptions WithRoundhousEMode(RoundhousEMode roundhouseMode)
 {
     _roundhouseMode = roundhouseMode;
     return this;
 }
コード例 #7
0
 public RoundhousEOptions WithRoundhousEMode(RoundhousEMode roundhouseMode)
 {
     _roundhouseMode = roundhouseMode;
     return(this);
 }