Viewing file: da_HisWork.php (2.4 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("my_ea_model.php");
class Da_hiswork extends My_ea_model {
// PK is seqId
public $seqId;
public $alumniId;
public $companyNameT;
public $companyNameE;
public $companyAddr;
public $companyPosition;
public $companyAdmidPosYear;
public $companyStartDate;
public $companyEndDate;
public $hwUserId;
public $hwUserUpdate;
public $last_insert_id;
function Da_hiswork() {
parent::__construct();
$this->load->database('ea', TRUE);
}
function insert() {
// if there is no auto_increment field, please remove it
$sql = "INSERT INTO $this->ea_dbname.HisWork (seqId, alumniId, companyNameT, companyNameE, companyAddr, companyPosition, companyAdmidPosYear, companyStartDate, companyEndDate, hwUserId, hwUserUpdate)
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->seqId, $this->alumniId, $this->companyNameT, $this->companyNameE, $this->companyAddr, $this->companyPosition, $this->companyAdmidPosYear, $this->companyStartDate, $this->companyEndDate, $this->hwUserId, $this->hwUserUpdate));
$this->last_insert_id = $this->db->insert_id();
}
function update() {
// if there is no primary key, please remove WHERE clause.
$sql = "UPDATE $this->ea_dbname.HisWork
SET companyNameT=?, companyNameE=?, companyAddr=?, companyPosition=?, companyAdmidPosYear=?, companyStartDate=?, companyEndDate=?, hwUserId=?, hwUserUpdate=?
WHERE seqId=? AND alumniId=?";
$this->db->query($sql, array($this->companyNameT, $this->companyNameE, $this->companyAddr, $this->companyPosition, $this->companyAdmidPosYear, $this->companyStartDate, $this->companyEndDate, $this->hwUserId, $this->hwUserUpdate, $this->seqId, $this->alumniId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ea_dbname.HisWork
WHERE seqId=? AND alumniId=?";
$this->db->query($sql, array($this->seqId, $this->alumniId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ea_dbname.HisWork
WHERE seqId=? AND alumniId=?";
$query = $this->db->query($sql, array($this->seqId, $this->alumniId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_hiswork
?>
|