Viewing file: clsResultTQTeach.php (2.9 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class ResultTQTeach--------------------------
//--PK of ResultTQTeach ::
// 1. reTeachid
class ResultTQTeach extends clsDB{
var $result;
var $reTeachid;
var $doTeachid;
var $sectionTQid;
var $TQid;
var $comment;
function ResultTQTeach(&$c){
$this->c=$c->c;
$this->DB=$c->db;
}
function Save(){
//--ข้อมูลในอ๊อบเจ๊กเป็นข้อมูลใหม่หรือข้อมูลเดิม --1:ข้อมูลใหม่ 2:ข้อมูลเดิม
if ($this->status==1){
//uncomment a line below if your table use ID as running number
$this->reTeachid=$this->GetNextCode();
$sql = "insert into ResultTQTeach values(
'$this->reTeachid',
'$this->doTeachid',
'$this->sectionTQid',
'$this->TQid',
'$this->comment'
)";
}else {
$sql = "update ResultTQTeach set
doTeachid='$this->doTeachid',
sectionTQid='$this->sectionTQid',
TQid='$this->TQid',
comment='$this->comment'
where reTeachid='$this->reTeachid'";
}
return $this->Dml($sql);
}
function Delete(){
//--ลบข้อมูลเดิมในอ๊อบเจ๊ก, เป็นการลบข้อมูลทีละ 1 เรคอร์ด
//--ต้องเรียกเมธอดตามลำดับดังนี้ SearchByKey()-->GetRecord()-->Delete()
return $this->Dml("delete from ResultTQTeach where reTeachid='$this->reTeachid'");
}
function GetNextCode(){
//--หาค่าสูงสุดของฟิลด์ที่ใช้เป็นคีย์ของตาราง ในลักษณะ auto increment
//--ต้องเป็นฟิลด์ชนิดตัวเลขจำนวนเต็มเท่านั้น และไม่ได้กำหนดรหัสเองทางจอภาพ
$this->SetQuery("select max(reTeachid) as num from ResultTQTeach");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RSResultTQTeach(){
//--เมธอดที่ขึ้นต้นด้วย RS (ResultSet) มีความหมายว่าจะได้รับข้อมูลกลับมาจากการ select มากกว่า 1 เรคอร์ด
//--จะต้องเรียกเมธอด GetRecord() ด้วยเสมอ นำข้อมูลจาก ResultSet เข้าอ๊อบเจ๊ก
//--โดยสามารถเพิ่มเมธอดได้ตามต้องการ แต่ต้องขึ้นต้นด้วย RS
$this->SetQuery("select * from ResultTQTeach order by reTeachid");
}
function GetRecord(){
//--นำข้อมูลจาก ResultSet มากำหนดให้กับแอตทริบิวต์ของอ๊อบเจ็ก
//--เรียก GetRecord() หนึ่งครั้ง จะเลื่อนตัวชี้เรคอร์ดไปอีกหนึ่งเรคอร์ด
if ($this->result = $this->GetResult()) {
$this->reTeachid = $this->result['reTeachid'];
$this->doTeachid = $this->result['doTeachid'];
$this->sectionTQid = $this->result['sectionTQid'];
$this->TQid = $this->result['TQid'];
$this->comment = $this->result['comment'];
return 1;
}else {
return 0;
}
}
function SearchByKey($xKey){
//--ค้นหาข้อมูลตาม PK ต้องระบุพารามิเตอร์ด้วย และต้องตามด้วยเมธอด GetRecord() เสมอ
if ($this->SetQuery("select * from ResultTQTeach where reTeachid= '$xKey'")){
return 1;
}else {
return 0;
}
}
//****************** You can add new functions below **********************//
function SearchByDoidSectionTQid($xdoTeachid,$xsectionTQid,$xTQid){
if ($this->SetQuery("select * from ResultTQTeach where doTeachid= '$xdoTeachid' and sectionTQid = '$xsectionTQid' and TQid = '$xTQid'")){
return 1;
}else {
return 0;
}
}
} //--End class ResultTQTeach--
?>
|