Viewing file: da_district.php (1.95 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("ppc_model.php");
class Da_district extends Ppc_model {
// PK is districtId
public $districtId;
public $districtName;
public $districtNameEng;
public $amphurId;
public $provinceId;
public $used;
public $pbriId;
public $last_insert_id;
function Da_district() {
parent::__construct();
$this->load->database('ppc',TRUE);
}
function insert() {
// if there is no auto_increment field, please remove it
$sql = "INSERT INTO $this->ppc_dbname.District (districtId, districtName, districtNameEng, amphurId, provinceId, used, pbriId)
VALUES(?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->districtId, $this->districtName, $this->districtNameEng, $this->amphurId, $this->provinceId, $this->used, $this->pbriId));
$this->last_insert_id = $this->db->insert_id();
}
function update() {
// if there is no primary key, please remove WHERE clause.
$sql = "UPDATE $this->ppc_dbname.District
SET districtName=?, districtNameEng=?, amphurId=?, provinceId=?, used=?, pbriId=?
WHERE districtId=?";
$this->db->query($sql, array($this->districtName, $this->districtNameEng, $this->amphurId, $this->provinceId, $this->used, $this->pbriId, $this->districtId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ppc_dbname.District
WHERE districtId=?";
$this->db->query($sql, array($this->districtId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ppc_dbname.District
WHERE districtId=?";
$query = $this->db->query($sql, array($this->districtId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
function last_insert_id(){
return $this->db->insert_id();
}
} //=== end class Da_district
?>
|