%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php defined('BASEPATH') OR exit('No direct script access allowed'); Class Incident_Model extends CI_Model{ /* * Function : Sqlupdateinfo * * DB Connection : db2 * * */ public function undateIncidentInfo($tbl_name='', $post, $field, $value) { $otherdb = $this->load->database('db2', TRUE); $otherdb->where($field, $value); if (!$otherdb->update($tbl_name, $post)) { log_message('error', print_r($this->db->error(), true)); } //echo $this->db->last_query(); die; } public function saveIncidentInfo($tbl_name='', $post) { $otherdb = $this->load->database('db2', TRUE); $otherdb->insert($tbl_name, $post); //echo $this->db->last_query(); die; return $otherdb->insert_id(); } /* * Function : SqlgetAllRecord * DB Connection : db2 */ public function SqlgetAllRecord($tbl_name='tblcomplaints', $col = ' * ', $condition=null) { $otherdb = $this->load->database('db2', TRUE); $time = time(); $otherdb->select($col); // $this->db->where('is_deleted', '0'); if(!empty($condition)) { foreach($condition as $key=>$val) { $otherdb->where($key, $val); } } $query = $otherdb->get($tbl_name); //echo $this->db->last_query(); die; return $query->result_array(); } /* * Function : SQLgetSingleRecord * DB Connection : db2 */ public function SQLgetSingleRecord($tbl_name, $col = ' * ', $condition=null) { $otherdb = $this->load->database('db2', TRUE); $time = time(); $otherdb->select($col); // $this->db->where('is_deleted', '0'); if(!empty($condition)) { foreach($condition as $key=>$val) { $otherdb->where($key, $val); } } $query = $otherdb->get($tbl_name); //echo $this->db->last_query(); die; return $query->row_array(); } public function incidentCount($tbl_name = 'patient_registration') { $otherdb = $this->load->database('db2', TRUE); $result = $otherdb->query("SELECT complaintNumber FROM ".$tbl_name." where is_deleted='0'"); return $result->num_rows(); } }