db->query($q); return $query; } function get_all() { $this->db->select('id, nama'); $this->db->from('pelayanan'); $this->db->order_by("nama", "asc"); return $this->db->get(); } function get_detail($id){ $query= $this->db->get_where('pelayanan', array('id' => $id)); return $query; } function alpha(){ $query= $this->db->get_where('alpha', array('id_alpha' => 1)); return $query; } function insert($data, $table) { $this->db->insert($table, $data); } function delete($where, $table) { $this->db->where($where); $this->db->delete($table); } function edit($where, $table) { return $this->db->get_where($table, $where); } function update($where, $data, $table) { $this->db->where($where); $this->db->update($table, $data); } }