예제 #1
0
 public MySqlInt32(MySqlDbType type, int val)
 {
     this        = new MySqlInt32(type);
     this.isNull = false;
     this.mValue = val;
 }
예제 #2
0
 public MySqlInt32(MySqlDbType type, bool isNull)
 {
     this        = new MySqlInt32(type);
     this.isNull = isNull;
 }