Viewing file:      da_province.php (1.73 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 
 include_once("ppc_model.php");
 
 class Da_province extends Ppc_model {        
     
     // PK is provinceId
     
     public $provinceId;
     public $provinceName;
     public $provinceNameEng;
     public $pbriId;
 
     public $last_insert_id;
 
     function Da_province() {
         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.Province (provinceId, provinceName, provinceNameEng, pbriId)
                 VALUES(?, ?, ?, ?)";
         $this->db->query($sql, array($this->provinceId, $this->provinceName, $this->provinceNameEng, $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.Province 
                 SET    provinceName=?, provinceNameEng=?, pbriId=? 
                 WHERE provinceId=?";    
         $this->db->query($sql, array($this->provinceName, $this->provinceNameEng, $this->pbriId, $this->provinceId));    
     }
     
     function delete() {
         // if there is no primary key, please remove WHERE clause.
         $sql = "DELETE FROM $this->ppc_dbname.Province
                 WHERE provinceId=?";
         $this->db->query($sql, array($this->provinceId));
     }
     
     /*
      * You have to assign primary key value before call this function.
      */
     function get_by_key($withSetAttributeValue=FALSE) {    
         $sql = "SELECT * 
                 FROM $this->ppc_dbname.Province 
                 WHERE provinceId=?";
         $query = $this->db->query($sql, array($this->provinceId));
         if ( $withSetAttributeValue ) {
             $this->row2attribute( $query->row() );
         } else {
             return $query ;
         }
     }
 
     function last_insert_id(){
         return $this->db->insert_id();
     }
     
 }     //=== end class Da_province
 ?>
  |