Viewing file: clsDocSpeedLevel.php (2.55 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php //--Class base_ProposeType-------------------------- //--PK of base_ProposeType :: // 1. PtID
include_once "../link/keyThai.php"; class DocSpeedLevel extends clsDB{
var $result;
var $DslID; var $DslName; var $THeGIF_SID;
function DocSpeedLevel(&$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){ //$this->DslID=$this->GetNextCode(); $sql = "insert into DocSpeedLevel values('".th2a($this->DslID)."', '".th2a($this->DslName)."')"; }else { $sql = "update DocSpeedLevel set DslName='".th2a($this->DslName)."' where DslID='".th2a($this->DslID)."'"; } return $this->Dml($sql); }
function Delete(){ return $this->Dml("delete from DocSpeedLevel where DslID='$this->DslID'"); }
function GetNextCode(){ $this->SetQuery("select max(DslID) as num from DocSpeedLevel"); if ($result=$this->GetResult()) { return $result['num']+1; } }
function RSDocSpeedLevel(){ $this->SetQuery("select * from DocSpeedLevel order by DslID"); }
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)."'];"); $this->DslName=a2th($this->DslName); } 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 DocSpeedLevel where DslID= '$xKey'")){ return 1; }else { return 0; } } //****************** You can add new functions below **********************// function SearchName($xKey){ $this->SetQuery("select DslName as num from DocSpeedLevel where DslID= '$xKey'"); if ($result=$this->GetResult()) { return $result['num']; } } function SearchByTHeGIF_SID($xKey){ if ($this->SetQuery("select * from DocSpeedLevel where THeGIF_SID= '$xKey'")){ return 1; }else { return 0; } } function SearchTHeGIF_SIDByDslID($xKey){ if ($this->SetQuery("select * from DocSpeedLevel where DslID= '$xKey'")){ return 1; }else { return 0; } } function SearchNumRowDocSpeedLevel($xKey){ $this->SetQuery("select count(DslID) as num from DocSpeedLevel"); if ($result=$this->GetResult()) { return $result['num']; } } function SearchTHeGIF_SID($xKey){ $this->SetQuery("select THeGIF_SID as num from DocSpeedLevel where DslID= '$xKey'"); if ($result=$this->GetResult()) { return $result['num']; } } } //--End class base_DocSpeedLevel--
?>
|