Viewing file: clshire.php (1.56 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class base_hire--------------------------
//--PK of base_hire ::
// 1. hireId
class hire extends clsDB{
var $result;
var $hireId;
var $hireName;
function hire(&$c){
$this->c=$c->c;
$this->DB=$c->db;
}
function AddNew(){
$this->status = 1;
}
function Edit(){
$this->status = 2;
}
function Save(){
if ($this->status==1){
$sql = "insert into hire values('$this->hireId', '$this->hireName')";
}else {
$sql = "update hire set hireName='$this->hireName' where hireId='$this->hireId'";
}
return $this->Dml($sql);
}
function Delete(){
return $this->Dml("delete from hire where hireId='$this->hireId'");
}
function GetNextCode(){
$this->SetQuery("select max(hireId) as num from hire");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RShire(){
$this->SetQuery("select * from hire order by hireId");
}
function GetRecord(){
$numFields = $this->NumField();
$row = $this->GetResult();
if ($row){
for ($i=0; $i<$numFields; $i++){
eval("\$this->".mysql_field_name($this->rs, $i)."=\$row['".mysql_field_name($this->rs, $i)."'];");
}
return true;
}else{ // clear value of Member;
for ($i=0; $i<$numFields; $i++){
eval("\$this->".mysql_field_name($this->rs, $i)."='';");
}
return false;
}
}
function SearchByKey($xKey){
if ($this->SetQuery("select * from hire where hireId= '$xKey'")){
return 1;
}else {
return 0;
}
}
//****************** You can add new functions below **********************//
} //--End class base_DocSpeedLevel--
?>
|