如何使用SQLite3 :: open选择所有行?以下代码仅输出一行。
<?php
/**
* Simple example of extending the SQLite3 class and changing the __construct
* parameters, then using the open method to initialize the DB.
*/
class MyDB extends SQLite3
{
function __construct()
{
$this->open('db_backups/database_123456789.db');
}
}
$db = new MyDB();
$result = $db->query('SELECT * FROM myBookmarks');
var_dump($result->fetchArray());
// ONLY DUMPS ONE RESULT
?>
我在这里得到了我的起始代码。 http://www.php.net/manual/en/sqlite3.open.php
答案 0 :(得分:1)
找到答案:
while ($row = $result->fetchArray())
{
var_dump($row);
}