CakeFest 2024: The Official CakePHP Conference

Notas

Esta seção fornece uma coleção de notas miscelâneas sobre o uso do Driver Nativo MySQL.

  • Usar mysqlndsignifica usar fluxos PHP para conectividades subjacente. Para mysqlnd, a documentação de fluxos do PHP (Fluxos) deve ser consultada sobre detalhes como configurações de limites de tempo, e não a documentação para a Biblioteca Cliente do MySQL.

add a note

User Contributed Notes 1 note

up
-2
Les Brown
14 years ago
After upgrading from php 5.2 to php 5.3 on Windows, I was unable to connect to MySQL databases on localhost. I eventually tracked the problem down to entries in my hosts file:
It contained:
127.0.0.1 localhost
[...]
::1 localhost
Commenting out the second line fixed the problem.

The problem is explained here: http://bugs.php.net/bug.php?id=50172
To Top