Welcome Guest, Not a member yet? Register   Sign In
Oracle filter with LIKE method always zero result
#2

(This post was last modified: 09-23-2019, 11:42 AM by jreklund.)

Just by the looks of it, try this:
Code:
$this->db->select('COUNT(*) AS FOUND', false);

https://codeigniter.com/user_guide/datab...er::select

And what is $where in this context?

Should be:
Code:
$this->db->like('ul_datetime_login', '23-09-2019', 'after');

Complete code, as ->get() looked wrong too.
Code:
$this->db->select('COUNT(*) AS FOUND', false);
$this->db->like('ul_datetime_login', '23-09-2019', 'after');
$row = $this->db->get('ci_r_user_log')->row();
Reply


Messages In This Thread
RE: Oracle filter with LIKE method always zero result - by jreklund - 09-23-2019, 11:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB