Viewing file:      da_rg_FStatusInPs.php (1.53 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 
 include_once("my_model.php");
 
 class Da_rg_FStatusInPs extends My_model {        
     
     // PK is fipFStatus
     
     public $fipFStatus;
     public $fipPsId;
     public $fipFStatusName;
 
     public $last_insert_id;
 
     function __construct() {
         parent::__construct();
         $this->load->database('rg', TRUE);
     }
     
     function insert() {
         // if there is no auto_increment field, please remove it
         $sql = "INSERT INTO rg_FStatusInPs (fipFStatus, fipPsId, fipFStatusName)
                 VALUES(?, ?, ?)";
         $this->db->query($sql, array($this->fipFStatus, $this->fipPsId, $this->fipFStatusName));
         $this->last_insert_id = $this->db->insert_id();
     }
     
     function update() {
         // if there is no primary key, please remove WHERE clause.
         $sql = "UPDATE rg_FStatusInPs 
                 SET    fipPsId=?, fipFStatusName=? 
                 WHERE fipFStatus=?";    
         $this->db->query($sql, array($this->fipPsId, $this->fipFStatusName, $this->fipFStatus));    
     }
     
     function delete() {
         // if there is no primary key, please remove WHERE clause.
         $sql = "DELETE FROM rg_FStatusInPs
                 WHERE fipFStatus=?";
         $this->db->query($sql, array($this->fipFStatus));
     }
     
     /*
      * You have to assign primary key value before call this function.
      */
     function get_by_key($withSetAttributeValue=FALSE) {    
         $sql = "SELECT * 
                 FROM rg_FStatusInPs 
                 WHERE fipFStatus=?";
         $query = $this->db->query($sql, array($this->fipFStatus));
         if ( $withSetAttributeValue ) {
             $this->row2attribute( $query->row() );
         } else {
             return $query ;
         }
     }
     
 }     //=== end class Da_rg_fstatusinps
 ?> 
  |