protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLOrderBuilder order, int offset, int rows) : base(factory, order)
 {
     this.offset = offset;
     this.rows   = rows;
 }
 public MySQLOrderDESCBuilder(MySQLCommandFactory factory, MySQLOrderBuilder orderby, Data.Objects.IDbColumn column) : base(factory, orderby, column)
 {
 }
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLOrderBuilder order, int rows) : this(factory, order, 0, rows)
 {
 }