SetQuery("select * from ProgramConfig where programConfStatus='Y' order by programConfId"); } function RSProgramConfigByActivePcStatusLimit($start, $pageSize){ $this->SetQuery("select * from ProgramConfig where programConfStatus='Y' order by programConfId limit $start, $pageSize"); } function SearchByPcName($xKey){ $this->SetQuery("select * from ProgramConfig where programConfName='$xKey'"); } function RSProgramConfigByPcNameAndNotPcId($xKey, $yKey){ $this->SetQuery("select * from ProgramConfig where programConfName='$xKey' and programConfId!='$yKey'"); } } //--End class ProgramConfig-- ?>