This breaks
$result = $this->db->query("CALL FormatsList()");
$result->fetchAll();
$result = $this->db->query("CALL FormatsList()");
$result->fetchAll();
this doesnt
$this->db->getConnection()->query("CALL FormatsList()");
$result = $this->db->getConnection()->store_result();
$this->db->getConnection()->query("CALL FormatsList()");
$result = $this->db->getConnection()->store_result();
Im guessing this is the same issue for PDO though it might be a much
bigger problem where the driver options dont affect anything. It could
just be damn FreeBSD where the problem is occuring compared to my osx
machine.
If i can work out how to free the result that might be a start,