SetQuery("select * from Room order by roomId limit $start, $pageSize"); } function RSRoomByBuildingId($xKey){ $this->SetQuery("select * from Room where buildingId='$xKey' order by roomId"); } function RSRoomByBuildingIdLimit($xKey, $start, $pageSize){ $this->SetQuery("select * from Room where buildingId='$xKey' order by roomId limit $start, $pageSize"); } } //--End class Room-- ?>