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 DocAttatches values('".th2a($this->DaID)."', '".th2a($this->DocID)."', '".th2a($this->DaFileName)."', '".th2a($this->DaUpFileName)."', '".th2a($this->DaSeq)."')"; }else { $sql = "update DocAttatches set DocID='".th2a($this->DocID)."', DaFileName='".th2a($this->DaFileName)."', DaUpFileName='".th2a($this->DaUpFileName)."', DaSeq='".th2a($this->DaSeq)."' where DaID='".th2a($this->DaID)."'"; } return $this->Dml($sql); } function Delete(){ return $this->Dml("delete from DocAttatches where DaID='$this->DaID'"); } function GetNextCode(){ $this->SetQuery("select max(DaID) as num from DocAttatches"); if ($result=$this->GetResult()) { return $result['num']+1; } } function RSDocAttatches(){ $this->SetQuery("select * from DocAttatches order by DaID"); } 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->DaFileName=a2th($this->DaFileName); } 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 DocAttatches where DaID= '$xKey'")){ return 1; }else { return 0; } } //****************** You can add new functions below **********************// function SearchByDocID($xKey){ if ($this->SetQuery("select * from DocAttatches where DocID= '$xKey'")){ return 1; }else { return 0; } } function CountDocByDocID($xKey){ $this->SetQuery("select count(DaID) as num from DocAttatches where DocID='$xKey'"); if ($result=$this->GetResult()) { return $result['num']; } } function SearchMaxDaSeqDocID($xKey){ $this->SetQuery("select max(DaSeq) as num from DocAttatches where DocID='$xKey'"); if ($result=$this->GetResult()) { return $result['num']; } } function SearchByDocIDMoreDaSeq($xKey,$yKey){ if ($this->SetQuery("select * from DocAttatches where DocID= '$xKey' and DaSeq > '$yKey'")){ return 1; }else { return 0; } } function SearchByDaSeqCount0($xKey){ $this->SetQuery("select count(DaID) as num from DocAttatches where DocID='$xKey' and DaSeq = '0'"); if ($result=$this->GetResult()) { return $result['num']; } } } //--End class base_DocAttatches-- ?>