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