Viewing file: da_rg_Curriculum.php (3.26 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("my_model.php");
class Da_rg_Curriculum extends My_model {
// PK is curId
public $curId;
public $curImproveY;
public $curName;
public $curNameE;
public $curAbbr;
public $curAbbrE;
public $curDescription;
public $curDescriptionE;
public $curMinCredit;
public $curMinGPAX;
public $curNumStudyY;
public $curMaxStudyY;
public $curNumTmPerY;
public $curStatus;
public $curCcId;
public $curEdgId;
public $curElvId;
public $curGtpId;
public $curCreateDate;
public $curCreateUserId;
public $curUpdateDate;
public $curUpdateUsLogin;
public $last_insert_id;
function Da_rg_Curriculum() {
parent::__construct();
$this->load->database('rg', TRUE);
}
function insert() {
// if there is no auto_increment field, please remove it
$sql = "INSERT INTO $this->rg_dbname.rg_Curriculum (curId, curImproveY, curName, curNameE, curAbbr, curAbbrE, curDescription, curDescriptionE, curMinCredit, curMinGPAX, curNumStudyY, curMaxStudyY, curNumTmPerY, curStatus, curCcId, curEdgId, curElvId, curGtpId, curCreateDate, curCreateUserId, curUpdateDate, curUpdateUsLogin)
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->curId, $this->curImproveY, $this->curName, $this->curNameE, $this->curAbbr, $this->curAbbrE, $this->curDescription, $this->curDescriptionE, $this->curMinCredit, $this->curMinGPAX, $this->curNumStudyY, $this->curMaxStudyY, $this->curNumTmPerY, $this->curStatus, $this->curCcId, $this->curEdgId, $this->curElvId, $this->curGtpId, $this->curCreateDate, $this->curCreateUserId, $this->curUpdateDate, $this->curUpdateUsLogin));
$this->last_insert_id = $this->db->insert_id();
}
function update() {
// if there is no primary key, please remove WHERE clause.
$sql = "UPDATE $this->rg_dbname.rg_Curriculum
SET curImproveY=?, curName=?, curNameE=?, curAbbr=?, curAbbrE=?, curDescription=?, curDescriptionE=?, curMinCredit=?, curMinGPAX=?, curNumStudyY=?, curMaxStudyY=?, curNumTmPerY=?, curStatus=?, curCcId=?, curEdgId=?, curElvId=?, curGtpId=?, curCreateDate=?, curCreateUserId=?, curUpdateDate=?, curUpdateUsLogin=?
WHERE curId=?";
$this->db->query($sql, array($this->curImproveY, $this->curName, $this->curNameE, $this->curAbbr, $this->curAbbrE, $this->curDescription, $this->curDescriptionE, $this->curMinCredit, $this->curMinGPAX, $this->curNumStudyY, $this->curMaxStudyY, $this->curNumTmPerY, $this->curStatus, $this->curCcId, $this->curEdgId, $this->curElvId, $this->curGtpId, $this->curCreateDate, $this->curCreateUserId, $this->curUpdateDate, $this->curUpdateUsLogin, $this->curId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->rg_dbname.rg_Curriculum
WHERE curId=?";
$this->db->query($sql, array($this->curId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_Curriculum
WHERE curId=?";
$query = $this->db->query($sql, array($this->curId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_rg_curriculum
?>
|