Viewing file:      da_nation.php (1.68 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 
 include_once("ppc_model.php");
 
 class Da_nation extends Ppc_model {        
     
     // PK is nationId
     
     public $nationId;
     public $nationName;
     public $nationNameEng;
     public $pbriId;
 
     public $last_insert_id;
 
     function Da_nation() {
         parent::__construct();
         $this->load->database('ppc',TRUE);
     }
     
     function insert() {
         // if there is no auto_increment field, please remove it
         $sql = "INSERT INTO $this->ppc_dbname.Nation (nationId, nationName, nationNameEng, pbriId)
                 VALUES(?, ?, ?, ?)";
         $this->db->query($sql, array($this->nationId, $this->nationName, $this->nationNameEng, $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->ppc_dbname.Nation 
                 SET    nationName=?, nationNameEng=?, pbriId=? 
                 WHERE nationId=?";    
         $this->db->query($sql, array($this->nationName, $this->nationNameEng, $this->pbriId, $this->nationId));    
     }
     
     function delete() {
         // if there is no primary key, please remove WHERE clause.
         $sql = "DELETE FROM $this->ppc_dbname.Nation
                 WHERE nationId=?";
         $this->db->query($sql, array($this->nationId));
     }
     
     /*
      * You have to assign primary key value before call this function.
      */
     function get_by_key($withSetAttributeValue=FALSE) {    
         $sql = "SELECT * 
                 FROM $this->ppc_dbname.Nation 
                 WHERE nationId=?";
         $query = $this->db->query($sql, array($this->nationId));
         if ( $withSetAttributeValue ) {
             $this->row2attribute( $query->row() );
         } else {
             return $query ;
         }
     }
 
     function last_insert_id(){
         return $this->db->insert_id();
     }
     
 }     //=== end class Da_nation
 ?>
  |