//*********************************************************************** // Class Constructors // public WriteToSqlAttempt(WriteToSqlMethod method, bool success, bool tryingNext, double rows) { this._errList = new ExceptionCollection(); this._success = success; this._type = method; this._success = success; this._continue = tryingNext; this._rows = rows; this._dstCreate = false; this._dstExist = false; this._dstTrun = false; this._setMap = false; }
public WriteToSqlAttempt(WriteToSqlMethod method, bool success, double rows) : this(method, success, false, rows) { }
public WriteToSqlAttempt(WriteToSqlMethod method, bool success) : this(method, success, false, -1) { }
public WriteToSqlAttempt(WriteToSqlMethod method) : this(method, false, false, -1) { }