|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-04-06 15:25 UTC] ab@php.net
-Status: Open
+Status: Feedback
[2015-04-06 15:25 UTC] ab@php.net
[2015-04-13 09:51 UTC] JLH at Dataplan dot co dot uk
[2015-04-14 06:30 UTC] ab@php.net
[2015-04-14 17:15 UTC] JLH at Dataplan dot co dot uk
[2015-04-15 07:29 UTC] ab@php.net
[2015-04-23 17:36 UTC] JLH at Dataplan dot co dot uk
[2015-04-26 04:22 UTC] php-bugs at lists dot php dot net
[2015-04-26 06:05 UTC] requinix@php.net
-Status: No Feedback
+Status: Open
[2015-04-26 18:25 UTC] cmb@php.net
-Status: Open
+Status: Analyzed
-Assigned To:
+Assigned To: ab
[2015-04-26 18:25 UTC] cmb@php.net
[2015-04-27 14:43 UTC] ab@php.net
[2015-04-27 14:45 UTC] ab@php.net
[2015-04-28 13:04 UTC] ab@php.net
[2015-04-28 13:04 UTC] ab@php.net
-Status: Analyzed
+Status: Closed
[2015-04-28 13:16 UTC] ab@php.net
[2016-07-20 11:38 UTC] davey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 23:00:01 2025 UTC |
Description: ------------ On upgrading from php 5.6.5 nts (server 2012r2 64bit) to 5.6.7, our odbc_exec is no longer working. we are using the sage line 50 odbc driver to extract data from the accounts software we use. I suspect this is related to bug id 68964 Test script: --------------- c:\inetpub\php\php.exe c:\inetpub\wwwroot\sage.php sage.php contains: <?php $odbcconn=odbc_connect("SageLine50v20","user","pass"); $query=odbc_exec($odbcconn,"SELECT ACCOUNT_REF, NAME FROM sales_ledger"); ?> Expected result: ---------------- in the 5.6.5 version, the code will display no errors Actual result: -------------- in the 5.6.7 version we get: PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 1956365745 bytes) in C:\inetpub\wwwroot\sage.php on line 3 So i changed the memory limit from 512M to 3G to see what would happen: PHP Fatal error: Out of memory (allocated 262144) (tried to allocate 1956365745 bytes) in C:\inetpub\wwwroot\sage.php on line 3