Welcome Guest, Not a member yet? Register   Sign In
$this->db->limit() working differently?
#1
Lightbulb 

Hi

I had to fix an application while upgrading from version 3.1.0 to 3.1.2 because active record $this->db->limit() apparently works differently:

Code:


Code:
$this->db->limit(0,1);
$arr_settings = $this->db->get('settings')->result_array();


produced under system 3.1.0:
Code:
SELECT * FROM `settings



produced under system 3.1.2:
Code:
SELECT * FROM `settings` LIMIT 1, 0


I couldn't find this in the change log.

Thanks.
Reply


Messages In This Thread
$this->db->limit() working differently? - by Ornis - 11-13-2016, 03:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB