Viewing file: clsSysConfig.php (3.07 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class sysconfig--------------------------
//--PK of sysconfig ::
include_once "../link/keyThai.php";
class sysConfig extends clsDB{
var $result;
var $sysYear;
var $sysDocNo;
var $editRunningPsId;
var $OutputThai;
var $InputThai;
function sysConfig(&$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->workGpId=$this->GetNextCode();
$sql = "insert into SysConfig values(
'".th2a($this->sysYear)."',
'".th2a($this->sysDocNo)."',
'".th2a($this->editRunningPsId)."',
'".th2a($this->OutputThai)."',
'".th2a($this->InputThai)."'
)";
}else {
$sql = "update SysConfig set
sysYear='".th2a($this->sysYear)."',
sysDocNo='".th2a($this->sysDocNo)."',
editRunningPsId='".th2a($this->editRunningPsId)."',
OutputThai='".th2a($this->OutputThai)."',
InputThai='".th2a($this->InputThai)."'";
}
return $this->Dml($sql);
}
function Delete(){
//--ลบข้อมูลเดิมในอ๊อบเจ๊ก, เป็นการลบข้อมูลทีละ 1 เรคอร์ด
//--ต้องเรียกเมธอดตามลำดับดังนี้ SearchByKey()-->GetRecord()-->Delete()
return $this->Dml("delete from SysConfig");
}
function RSsysConfig(){
//--เมธอดที่ขึ้นต้นด้วย RS (ResultSet) มีความหมายว่าจะได้รับข้อมูลกลับมาจากการ select มากกว่า 1 เรคอร์ด
//--จะต้องเรียกเมธอด GetRecord() ด้วยเสมอ นำข้อมูลจาก ResultSet เข้าอ๊อบเจ๊ก
//--โดยสามารถเพิ่มเมธอดได้ตามต้องการ แต่ต้องขึ้นต้นด้วย RS
$this->SetQuery("select * from SysConfig");
}
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->sysDocNo=a2th($this->sysDocNo);
}
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){
//--ค้นหาข้อมูลตาม PK ต้องระบุพารามิเตอร์ด้วย และต้องตามด้วยเมธอด GetRecord() เสมอ
if ($this->SetQuery("select * from SysConfig")){
return 1;
}else {
return 0;
}
}
//****************** You can add new functions below **********************//
function SearchBysysYear(){
//--ค้นหาข้อมูลตาม PK ต้องระบุพารามิเตอร์ด้วย และต้องตามด้วยเมธอด GetRecord() เสมอ
$this->SetQuery("select sysYear as num from SysConfig");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function SearchByeditRunningPsId(){
//--ค้นหาข้อมูลตาม PK ต้องระบุพารามิเตอร์ด้วย และต้องตามด้วยเมธอด GetRecord() เสมอ
$this->SetQuery("select editRunningPsId as num from SysConfig");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function SearchByInputThai(){
//--ค้นหาข้อมูลตาม PK ต้องระบุพารามิเตอร์ด้วย และต้องตามด้วยเมธอด GetRecord() เสมอ
$this->SetQuery("select InputThai as num from SysConfig");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
} //--End class person--
?>
|