我的查询没有返回任何结果

时间:2016-09-05 14:58:38

标签: php mysql pdo

我在表上有一个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());

0 个答案:

没有答案