Net.Sf.Dbdeploy.Configuration.DbDeployConfig.DbDeployConfig C# (CSharp) Method

DbDeployConfig() public method

Initializes a new instance of the DbDeployConfig class.
public DbDeployConfig ( ) : System.IO
return System.IO
        public DbDeployConfig()
        {
            // Set all defaults.
            this.Dbms = DbDeployDefaults.Dbms;
            this.ConnectionString = DbDeployDefaults.ConnectionString;
            this.ScriptDirectory = DbDeployDefaults.ScriptDirectory;
            this.OutputFile = DbDeployDefaults.OutputFile;
            this.ChangeLogTableName = DbDeployDefaults.ChangeLogTableName;
            this.AutoCreateChangeLogTable = DbDeployDefaults.AutoCreateChangeLogTable;
            this.ForceUpdate = DbDeployDefaults.ForceUpdate;
            this.UseSqlCmd = DbDeployDefaults.UseSqlCmd;
            this.LastChangeToApply = DbDeployDefaults.LastChangeToApply;
            this.Encoding = DbDeployDefaults.Encoding;
            this.TemplateDirectory = DbDeployDefaults.TemplateDirectory;
            this.Delimiter = DbDeployDefaults.Delimiter;
            this.DelimiterType = DbDeployDefaults.DelimiterType;
            this.LineEnding = DbDeployDefaults.LineEnding;
        }
    }
DbDeployConfig