Viewing file: clsDocSendtoPsTmp.php (2.12 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php //--Class docattatchestmp-------------------------- //--PK of docattatchestmp :: // 1. DtmpID include_once "../link/keyThai.php"; class DocSendToPsTmp extends clsDB{
var $result;
var $DtPsID; var $DrsID; var $PsID;
function DocSendToPsTmp(&$c){ $this->c=$c->c; $this->DB=$c->db; }
function Save(){ if ($this->status==1){ //uncomment a line below if your table use ID as running number //$this->DtmpID=$this->GetNextCode(); $sql = "insert into DocSendToPstmp values( '".th2a($this->DtPsID)."', '".th2a($this->DrsID)."', '".th2a($this->PsID)."' )"; }else { $sql = "update DocSendToPstmp set DrsID='".th2a($this->DrsID)."', PsID='".th2a($this->PsID)."' where DtPsID='".th2a($this->DtPsID)."'"; } return $this->Dml($sql); }
function Delete(){ return $this->Dml("delete from DocSendToPstmp where DtPsID='$this->DtPsID'"); } function NumRow(){ return $this->GetRowSelected(); } function GetNextCode(){ $this->SetQuery("select max(DtPsID) as num from DocSendToPstmp"); if ($result=$this->GetResult()) { return $result['num']+1; } }
function RSDocSendToPstmp(){ $this->SetQuery("select * from DocSendToPstmp order by DtPsID"); }
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 SearchByDrsID($xKey){ if ($this->SetQuery("select * from DocSendToPstmp where DrsID= '$xKey'")){ return 1; }else { return 0; } } function SearchByDtPsID($xKey){ if ($this->SetQuery("select * from DocSendToPstmp where DtPsID= '$xKey'")){ return 1; }else { return 0; } } function SearchByPsIDDrsID($xKey,$yKey){ if ($this->SetQuery("select * from DocSendToPstmp where PsID= '$xKey' and DrsID='$yKey'")){ return 1; }else { return 0; } } //****************** You can add new functions below **********************//
} //--End class DocattatchesTmp--
?>
|