我在表上有一个select查询,结果超过15000行,当我用pdo执行它时,它没有返回任何结果
是否有任何解决方案可以使用我的脚本返回结果。
注意:在phpMyAdmin
中,查询会返回所需的结果
$dbh = new PDO('mysql:host=localhost;dbname="namedb";charset=utf8', 'root', '');
$sth = $dbh->prepare("select * from table");
$sth->execute();
var_dump($data = $sth->fetchAll());