Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.' in /home/xxxxx/www/xxxx/xxxxx.php:149 Stack trace: #0 /home/xxxxx/www/xxxx/xxxxx.php(149): PDO->prepare('SELECT `num` ...') #1 {main} thrown in /home/xxxxx/www/xxxx/xxxxx.php on line 149
PDO를 사용하다 보면 위와 같은 오류가 나오는 경우가 있습니다. 오류 내용은 버퍼되지 않은 쿼리가 활성화되어 있는 중에 쿼리를 실행할 수 없다. fetchAll()을 사용하는 걸 고려해 봐라. 대안으로 MYSQL_ATTR_USE_BUFFERED_QUERY 속성을 설정하여 쿼리 버퍼링을 활성화할 수 있다. 이렇습니다(발번역).
1. fetchAll()을 사용하거나
2. 속성 추가하는 부분에서 PDO::MYSQL_ATTR_USE_BUFFERED_QUERY를 true로 주면 됩니다.
'Programming > PHP' 카테고리의 다른 글
파일 확장자 갖고 오기 (0) | 2020.02.15 |
---|---|
자신이 쓰고 있는 호스팅이 32인지 64인지... (0) | 2020.02.13 |
[PDO]디비 연결 (0) | 2020.02.13 |
모바일로 접속했는지 체크 (0) | 2020.02.12 |
여러 개의 br을 하나로 줄이기 (0) | 2020.02.11 |