-1

此语句给出错误

无法从数据库中获取结果

$res =$dbcon->exec("select *from tablename ");
$res->fetch();

给一个错误。

4

2 回答 2

2

您的查询中需要一个空格:

$res = $dbcon->exec("select * from tablename");

根据$dbcon具体情况,您可能需要改用查询方法(alok.kumar 回答的一部分):

$res = $dbcon->query("select * from tablename");

参考:http ://www.php.net/manual/en/pdo.query.php

于 2013-08-13T16:40:57.237 回答
2

只更改一个查询

          $res =$dbcon->exec("select *from tablename "); 
               to
                  $res =$dbcon->query("select *from tablename ");
于 2013-08-13T16:41:01.610 回答