<?php
//--Class Nation--------------------------

include_once "clsbase_Nation.php";

class 
Nation extends base_Nation{

function 
RSNationByNationName($xKey){
    
$this->SetQuery("select * from Nation where nationName='$xKey'");
}

function 
RSNationByLikeNationName($xKey){
    
$this->SetQuery("select * from Nation where nationName like '%$xKey%' order by nationName");
}

function 
RSNationByLikeNationNameLimit($xKey$start$pageSize){
    
$this->SetQuery("select * from Nation where nationName like '%$xKey%' order by nationName limit $start, $pageSize");
}

function 
RSNationByNationNameAndNotNationId($xKey$yKey){
    
$this->SetQuery("select * from Nation where nationName='$xKey' and nationId!='$yKey'");
}

//--End class Nation--
?>