Viewing file: da_MajorEdu.php (1.55 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("my_ea_model.php");
class Da_majoredu extends My_ea_model {
// PK is majoreduId
public $majoreduId;
public $majoreduName;
public $pbriId;
public $last_insert_id;
function Da_majoredu() {
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.MajorEdu (majoreduId, majoreduName, pbriId)
VALUES(?, ?, ?)";
$this->db->query($sql, array($this->majoreduId, $this->majoreduName, $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->ea_dbname.MajorEdu
SET majoreduName=?, pbriId=?
WHERE majoreduId=?";
$this->db->query($sql, array($this->majoreduName, $this->pbriId, $this->majoreduId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ea_dbname.MajorEdu
WHERE majoreduId=?";
$this->db->query($sql, array($this->majoreduId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ea_dbname.MajorEdu
WHERE majoreduId=?";
$query = $this->db->query($sql, array($this->majoreduId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_majoredu
?>
|