Welcome Guest, Not a member yet? Register   Sign In
Possibly a bug in where_in() ?
#1

[eluser]Clifford James[/eluser]
This doesn't work and is essential for JOIN queries:

Code:
$this->db->where_in('news.id', array(1,2,3,4,5));
//but this works
$this->db->where_in('id', array(1,2,3,4,5));
//or
$this->db->where('news.id', 1);
#2

[eluser]Clifford James[/eluser]
In DB_driver.php is _protect_identifiers() causing the trouble.
#3

[eluser]Clifford James[/eluser]
NVM, its was the DB cache I guess.




Theme © iAndrew 2016 - Forum software by © MyBB