Following the example here;
http://framework.zend.com/manual/current/en/modules/zend.db.adapter.htmlI have this code;
$adapter = new Adapter(array(
'driver' => 'Mysqli',
'database' => 'wip',
'username' => 'user',
'password' => 'password'
));
$adapter->query('select * from mytable where id = ?', array(1));
Gives this error;
Row count is not available in unbuffered result sets.
What gives?