複数回PHP PDO戻りオブジェクトを使用するには?
以下のコードによると、 $result オブジェクトは while ループにデータを表示しません。
私のコード
try {
$dbhandle = new PDO("sqlite:".$database);
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
}
$result=$dbhandle->query("select * from table");
if($result)
{
$row=$result->fetch(PDO::FETCH_ASSOC)
if(count($row)>0)
{
while ($rs1 = $result->fetch(PDO::FETCH_ASSOC, PDO::FETCH_ORI_NEXT))
{
echo "<pre>";
print_r($rs1);
echo "</pre>";
}
}
else
{
// error message
}
}