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