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