我有一个使用 PDO 运行的小应用程序,在服务器迁移和 PHP 升级之后,我现在收到以下错误
Warning: PDO::query(): SQLSTATE[HY000]: General error: mode must be an integer in var/www/xxxxxxxx
它引用的行是
$statement = $this->_connection->Query("SELECT * FROM table WHERE SOMECOL = '$col' LIMIT 1", $this->_connection);
我一直在谷歌周围寻找一段时间,似乎没有任何修复。我尝试使用设置默认提取模式,$db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
但错误没有改变。
感谢他们的帮助:)