db->query($q); return $query; } function get_all() { $this->db->select('id, nama'); $this->db->from('pasien'); $this->db->order_by("nama", "asc"); return $this->db->get(); } 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); } }