public DataLogger_LogColumn(string sColumnName, string sSchemaDefinition, RJBMySQLUtilities.DataLogging.Types.LogColumn.LogType? eLogType)
 {
     this._eDefinitionType = LogColumn.DefinitionType.Static;
     this._LogType = eLogType;
     this._ColumnName = sColumnName;
     this._SchemaDefinition = this.SchemaName + " " + sSchemaDefinition;
 }
 public DataLogger_LogColumn(string sColumnName, string sSchemaDefinition, RJBMySQLUtilities.DataLogging.Types.LogColumn.LogType?eLogType)
 {
     this._eDefinitionType  = LogColumn.DefinitionType.Static;
     this._LogType          = eLogType;
     this._ColumnName       = sColumnName;
     this._SchemaDefinition = this.SchemaName + " " + sSchemaDefinition;
 }
 public DataLogger_LogColumn(string sColumnName, MySql.Data.MySqlClient.MySqlDbType eMySqlType, int iDataTypeLength, bool bNullable, string sKey, string sDefault, string sExtras, RJBMySQLUtilities.DataLogging.Types.LogColumn.LogType? eLogType)
 {
     this._eDefinitionType = LogColumn.DefinitionType.Dynamic;
     this._ColumnName = sColumnName;
     this._oMySqlDBType = eMySqlType;
     this._DataTypeLength = iDataTypeLength;
     this._Nullable = bNullable;
     this._Key = sKey;
     this._Default = sDefault;
     this._LogType = eLogType;
     this._Extras = sExtras;
 }
 public DataLogger_LogColumn(string sColumnName, MySql.Data.MySqlClient.MySqlDbType eMySqlType, int iDataTypeLength, bool bNullable, string sKey, string sDefault, string sExtras, RJBMySQLUtilities.DataLogging.Types.LogColumn.LogType?eLogType)
 {
     this._eDefinitionType = LogColumn.DefinitionType.Dynamic;
     this._ColumnName      = sColumnName;
     this._oMySqlDBType    = eMySqlType;
     this._DataTypeLength  = iDataTypeLength;
     this._Nullable        = bNullable;
     this._Key             = sKey;
     this._Default         = sDefault;
     this._LogType         = eLogType;
     this._Extras          = sExtras;
 }