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

[eluser]guidorossi[/eluser]
well, trat's weird...

I'm having the same code like:

Code:
function get_page($url = 'home'){
    $this->db->where('url', $url);
    $q = $this->db->get('content');
    //$q = $this->db->query('SELECT * FROM content WHERE url = ?', $url);
    if($q->num_rows() == 1) return $q->row(); else return FALSE;
        
}

    function getpage(){
        $this->output->enable_profiler(TRUE);
        $this->get_page('http://www.example.com');
    }

and on the profiler I get:

Quote:DATABASE: citest QUERIES: 1
0.0003
SELECT * FROM (`content`) WHERE `url` = 'http://www.example.com'

It seems to be all right...


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