public MySqlInt32(MySqlDbType type, int val) { this = new MySqlInt32(type); this.isNull = false; this.mValue = val; }
public MySqlInt32(MySqlDbType type, bool isNull) { this = new MySqlInt32(type); this.isNull = isNull; }