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