Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How i call solve the error?

Fatal error: Call to undefined method CI_DB_mysql_driver::getwhere() in C:\xampp\htdocs\ci_learn\application\models\employee_model.php on line 18



<?php 
class Employee_model extends CI_Model {
function Employee_model()
{
    parent::__construct();
}

function employee_getall()
{
    $this->load->database();
    $query = $this->db->get('employee');
    return $query->result();
}

function employee_get()
{
    $this->load->database();
    $query = $this->db->getwhere('employee', array('id' => 1));
    return $query->row_array();
}
} ?>
share|improve this question

1 Answer

up vote 0 down vote accepted

According to the docs, getwhere() was changed to get_where(). Looking back at the CodeIgniter Git log, it looks like it was removed on August 6, 2010 so any releases after that don't have it.

share|improve this answer
Yes i got it, Thank you.... :) – apssiva Sep 22 '11 at 1:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.