Viewing file: da_spc_place.php (2.04 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("ppc_model.php");
class Da_spc_place extends Ppc_model {
// PK is plHwId
public $plHwId;
public $plRmNo;
public $plFloor;
public $plBuilding;
public $plRtId;
public $plIsRoom;
public $plIsDom;
public $plNumFloor;
public $plCapacity;
public $hwName;
public $last_insert_id;
function Da_spc_place() {
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.spc_Place (plHwId, plRmNo, plFloor, plBuilding, plRtId, plIsRoom, plIsDom, plNumFloor, plCapacity, hwName)
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->plHwId, $this->plRmNo, $this->plFloor, $this->plBuilding, $this->plRtId, $this->plIsRoom, $this->plIsDom, $this->plNumFloor, $this->plCapacity, $this->hwName));
$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.spc_Place
SET plRmNo=?, plFloor=?, plBuilding=?, plRtId=?, plIsRoom=?, plIsDom=?, plNumFloor=?, plCapacity=?, hwName=?
WHERE plHwId=?";
$this->db->query($sql, array($this->plRmNo, $this->plFloor, $this->plBuilding, $this->plRtId, $this->plIsRoom, $this->plIsDom, $this->plNumFloor, $this->plCapacity, $this->hwName, $this->plHwId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ppc_dbname.spc_Place
WHERE plHwId=?";
$this->db->query($sql, array($this->plHwId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ppc_dbname.spc_Place
WHERE plHwId=?";
$query = $this->db->query($sql, array($this->plHwId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_spc_place
?>
|