Viewing file: da_ea_HisEducation.php (2.3 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("my_ea_model.php");
class Da_ea_hiseducation extends My_ea_model {
// PK is hedSeqId, hedAlumniId
public $hedSeqId;
public $hedAlumniId;
public $hedDegree;
public $hedLevelId;
public $hedEduId;
public $hedMajId;
public $hedStartDate;
public $hedFinishDate;
public $hedUserId;
public $hedUserUpdate;
public $last_insert_id;
function Da_ea_hiseducation() {
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.ea_HisEducation (hedSeqId, hedAlumniId, hedDegree, hedLevelId, hedEduId, hedMajId, hedStartDate, hedFinishDate, hedUserId, hedUserUpdate)
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->hedSeqId, $this->hedAlumniId, $this->hedDegree, $this->hedLevelId, $this->hedEduId, $this->hedMajId, $this->hedStartDate, $this->hedFinishDate, $this->hedUserId, $this->hedUserUpdate));
$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.ea_HisEducation
SET hedDegree=?, hedLevelId=?, hedEduId=?, hedMajId=?, hedStartDate=?, hedFinishDate=?, hedUserId=?, hedUserUpdate=?
WHERE hedSeqId=? AND hedAlumniId=?";
$this->db->query($sql, array($this->hedDegree, $this->hedLevelId, $this->hedEduId, $this->hedMajId, $this->hedStartDate, $this->hedFinishDate, $this->hedUserId, $this->hedUserUpdate, $this->hedSeqId, $this->hedAlumniId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ea_dbname.ea_HisEducation
WHERE hedSeqId=? AND hedAlumniId=?";
$this->db->query($sql, array($this->hedSeqId, $this->hedAlumniId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ea_dbname.ea_HisEducation
WHERE hedSeqId=? AND hedAlumniId=?";
$query = $this->db->query($sql, array($this->hedSeqId, $this->hedAlumniId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_ea_hiseducation
?>
|