Welcome Guest, Not a member yet? Register   Sign In
Active record WHERE clause not working?
#25

[eluser]xarazar[/eluser]
OK. Just tested Active Records with more functions and this query:

Code:
$q = $this->db->where('parent', 0)->where('visible', 1)->order_by('position', 'desc')->get('content');

works fine whereas this one:

Code:
$this->db->where('parent', 0);
$this->db->where('visible', 1);
$this->db->order_by('position', 'desc');
$q = $this->db->get('content');

fails miserably and returns the entire content of the 'content' table ordered by default.

So it's clear that there problem doesn't lie in the where() clause but in assembling the database query.

Anybody up for a challenge?


Messages In This Thread
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:27 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:41 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:43 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:45 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:49 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:02 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:13 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:27 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:38 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:51 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 12:09 PM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 03:37 PM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 04:03 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 04:51 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:00 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:46 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:54 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:55 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:56 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:04 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:12 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:34 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:39 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:47 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 09:41 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:41 PM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:17 PM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:23 PM
Active record WHERE clause not working? - by El Forum - 05-12-2011, 03:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB