Viewing file: da_rg_AcadConfig.php (2.94 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("my_model.php");
class Da_rg_AcadConfig extends My_model {
// PK is
public $acHonor1;
public $acHonor1E;
public $acHonor1GPA;
public $acHonor2;
public $acHonor2E;
public $acHonor2GPA;
public $acAnnualGPAX;
public $acExitExam;
public $acCPTransferClass;
public $acLateFineGD;
public $acCalGradeF;
public $acNoLockT;
public $acCardExpiryDay;
public $acCardExpiryMonth;
public $acForceAssess;
public $acPrsIdTSRegistrar;
public $acPrsIdDirector;
public $last_insert_id;
function Da_rg_AcadConfig() {
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_AcadConfig (acHonor1, acHonor1E, acHonor1GPA, acHonor2, acHonor2E, acHonor2GPA, acAnnualGPAX, acExitExam, acCPTransferClass, acLateFineGD, acCalGradeF, acNoLockT, acCardExpiryDay, acCardExpiryMonth, acForceAssess, acPrsIdTSRegistrar, acPrsIdDirector)
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->acHonor1, $this->acHonor1E, $this->acHonor1GPA, $this->acHonor2, $this->acHonor2E, $this->acHonor2GPA, $this->acAnnualGPAX, $this->acExitExam, $this->acCPTransferClass, $this->acLateFineGD, $this->acCalGradeF, $this->acNoLockT, $this->acCardExpiryDay, $this->acCardExpiryMonth, $this->acForceAssess, $this->acPrsIdTSRegistrar, $this->acPrsIdDirector));
$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_AcadConfig
SET acHonor1=?, acHonor1E=?, acHonor1GPA=?, acHonor2=?, acHonor2E=?, acHonor2GPA=?, acAnnualGPAX=?, acExitExam=?, acCPTransferClass=?, acLateFineGD=?, acCalGradeF=?, acNoLockT=?, acCardExpiryDay=?, acCardExpiryMonth=?, acForceAssess=?, acPrsIdTSRegistrar=?, acPrsIdDirector=? ";
$this->db->query($sql, array($this->acHonor1, $this->acHonor1E, $this->acHonor1GPA, $this->acHonor2, $this->acHonor2E, $this->acHonor2GPA, $this->acAnnualGPAX, $this->acExitExam, $this->acCPTransferClass, $this->acLateFineGD, $this->acCalGradeF, $this->acNoLockT, $this->acCardExpiryDay, $this->acCardExpiryMonth, $this->acForceAssess, $this->acPrsIdTSRegistrar, $this->acPrsIdDirector));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->rg_dbname.rg_AcadConfig";
$this->db->query($sql, array());
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_AcadConfig";
$query = $this->db->query($sql, array());
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
function last_insert_id(){
return $this->db->insert_id();
}
} //=== end class Da_rg_AcadConfig
?>
|