Viewing file: da_prefix.php (1.99 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("ppc_model.php");
class Da_prefix extends Ppc_model {
// PK is prefixId
public $prefixId;
public $prefixNameFull;
public $prefixName;
public $prefixNameEngFull;
public $prefixNameEng;
public $defaultSex;
public $pbriId;
public $last_insert_id;
function Da_prefix() {
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.Prefix (prefixId, prefixNameFull, prefixName, prefixNameEngFull, prefixNameEng, defaultSex, pbriId)
VALUES(?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->prefixId, $this->prefixNameFull, $this->prefixName, $this->prefixNameEngFull, $this->prefixNameEng, $this->defaultSex, $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.Prefix
SET prefixNameFull=?, prefixName=?, prefixNameEngFull=?, prefixNameEng=?, defaultSex=?, pbriId=?
WHERE prefixId=?";
$this->db->query($sql, array($this->prefixNameFull, $this->prefixName, $this->prefixNameEngFull, $this->prefixNameEng, $this->defaultSex, $this->pbriId, $this->prefixId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ppc_dbname.Prefix
WHERE prefixId=?";
$this->db->query($sql, array($this->prefixId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ppc_dbname.Prefix
WHERE prefixId=?";
$query = $this->db->query($sql, array($this->prefixId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
function last_insert_id(){
return $this->db->insert_id();
}
} //=== end class Da_prefix
?>
|