I've a project that use PostgreSQL and new with it. Below is the error that i was facing. I also has searched on google but cannot find the solution.
Fatal error: Call to undefined method CI_DB_postgre_driver::ilike() in D:\htdocs\poes\system\applicationapyd\classes\datafilter.php on line 162
I'm using codeigniter framework. This code is from datafilter.php $this->db->ilike($name, $value);
On my controller,
$query1 = "SELECT DISTINCT users.* FROM users LEFT JOIN login ON users.user_id=login.login_user_id;";
$filter->db->query($query1);
$filter->name = new inputField("Name :", "user_name");
$filter->name->clause = "ilike";