Viewing file: da_sa_except_military.php (1.98 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("sa_model.php");
class Da_sa_except_military extends Sa_model {
// PK is ecp_id
public $ecp_id;
public $ecp_std_id;
public $ecp_year;
public $ecp_create_date;
public $ecp_create_us_login;
public $ecp_update_date;
public $ecp_update_us_login;
public $last_insert_id;
function __construct() {
parent::__construct();
$this->load->database('esa',TRUE);
}
function insert() {
// if there is no auto_increment field, please remove it
$sql = "INSERT INTO sa_except_military (ecp_id, ecp_std_id, ecp_year, ecp_create_date, ecp_create_us_login, ecp_update_date, ecp_update_us_login)
VALUES(?, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->ecp_id, $this->ecp_std_id, $this->ecp_year, $this->ecp_create_date, $this->ecp_create_us_login, $this->ecp_update_date, $this->ecp_update_us_login));
$this->last_insert_id = $this->db->insert_id();
}
function update() {
// if there is no primary key, please remove WHERE clause.
$sql = "UPDATE sa_except_military
SET ecp_std_id=?, ecp_year=?, ecp_create_date=?, ecp_create_us_login=?, ecp_update_date=?, ecp_update_us_login=?
WHERE ecp_id=?";
$this->db->query($sql, array($this->ecp_std_id, $this->ecp_year, $this->ecp_create_date, $this->ecp_create_us_login, $this->ecp_update_date, $this->ecp_update_us_login, $this->ecp_id));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM sa_except_military
WHERE ecp_id=?";
$this->db->query($sql, array($this->ecp_id));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM sa_except_military
WHERE ecp_id=?";
$query = $this->db->query($sql, array($this->ecp_id));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_sa_except_military
?>
|