|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-04-23 09:08 UTC] tony2001@php.net
[2007-04-23 18:49 UTC] zizka at seznam dot cz
[2007-04-24 07:25 UTC] zizka at seznam dot cz
[2007-04-24 11:12 UTC] georg@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 13:00:01 2025 UTC |
Description: ------------ Please add MYSQL_CLIENT_MULTI_RESULTS to MySQL extension. Sometimes a situation arises that this constant is needed even though multiple results support is not needed. Currently everyone has to add define('MYSQL_CLIENT_MULTI_RESULTS', 131072); to his code. Reproduce code: --------------- <?php $conn = mysql_connect("localhost", "root", "", 1, MYSQL_CLIENT_MULTI_RESULTS); ?> Expected result: ---------------- ... Actual result: -------------- ...