ファイルZend\Db\Adapter\Exception\RuntimeException
に入る
\library\Zend\Db\Adapter\Driver\Pdo\Result.php:159
私のデータベース設定コードは
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',
),
)
結果取得コードは
$statement = $this->sql->prepareStatementForSqlObject($select);
$results = $statement->execute();
$results->buffer();
そして私は&& を試しました$results->rewind()
私の反復コードは次のようなものです
foreach ( $results as $result ){
// code goes here ..
}
....
foreach ( $results as $result ){
// code goes here ..
}