SetQuery("select * from ClinicalPractice where cliPracName='$xKey'"); } function RSClinicalPracticeByLikeCliPracName($xKey){ $this->SetQuery("select * from ClinicalPractice where cliPracName like '%$xKey%' order by sequence"); } function RSClinicalPracticeByLikeCliPracNameLimit($xKey, $start, $pageSize){ $this->SetQuery("select * from ClinicalPractice where cliPracName like '%$xKey%' order by sequence limit $start, $pageSize"); } function RSClinicalPracticeByCliPracNameAndNotCliPracId($xKey, $yKey){ $this->SetQuery("select * from ClinicalPractice where cliPracName='$xKey' and cliPracId!='$yKey'"); } } //--End class ClinicalPractice-- ?>