|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-03-19 23:43 UTC] felipe@php.net
[2009-03-27 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 09 01:00:01 2025 UTC |
Description: ------------ If you are using PDO and you try to execute "show columns from `table`" query on Windows, PHP crashes violently and Apache service is shutted down automatically. All other queries work well. The bug is reproducible only on some versions of Windows - in this case - Windwos Server 2003. Reproduce code: --------------- <?php $connection = new PDO('mysql:host=localhost;dbname=dbName', 'theUser', 'thePassword'); $query="SHOW COLUMNS FROM `someTable`"; $result = $connection->query($query); var_dump($result); ?> Expected result: ---------------- Apache crashes - the service is stopped because of too many errors.