Getting Zend\Db\Adapter\Exception\RuntimeException on file
\library\Zend\Db\Adapter\Driver\Pdo\Result.php:159
my database setting code is
array(
'db' => array(
'driver' => 'Pdo',
'pdodriver' => 'mysql',
'driver_options' => array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\'',
'buffer_results' => true
),
'username' => 'root',
'password' => '',
'host' => 'localhost',
'dbname' => 'db_name',
),
)
result fetching code is
$statement = $this->sql->prepareStatementForSqlObject($select);
$results = $statement->execute();
and I tried $results->buffer(); && $results->rewind()
My iterating code is like
foreach ( $results as $result ){
// code goes here ..
}
....
foreach ( $results as $result ){
// code goes here ..
}