<?php
//--Class StudentDom--------------------------

include_once "clsbase_StudentDom.php";

class 
StudentDom extends base_StudentDom{

function 
RSStudentDomLimit($start$pageSize){
    
$this->SetQuery("select * from StudentDom order by studentId limit $start, $pageSize");
}

function 
RSStudentDomByAcYAndSeAndDoId($xKey$yKey$zKey){
    
$this->SetQuery("select * from StudentDom where acadYear='$xKey' and semester='$yKey' and domId='$zKey'");
}

function 
RSStudentDomByAcYAndDoId($xKey$yKey){
    
$this->SetQuery("select d.* from StudentDom d, StudentMaster m 
                        where d.acadYear='$xKey' and d.domId='$yKey' and d.studentId=m.studentId 
                        order by m.studentCode, d.semester"
);
}

//--End class StudentDom--
?>