|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2009-03-06 17:04 UTC] ssufficool at roadrunner dot com
  [2010-01-14 18:20 UTC] ssufficool at roadrunner dot com
  [2010-01-14 18:52 UTC] ssufficool at gmail dot com
  [2010-05-31 21:34 UTC] ssufficool@php.net
 
-Status:      Bogus
+Status:      Closed
-Assigned To:
+Assigned To: ssufficool
  [2010-05-31 21:34 UTC] ssufficool@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 03:00:01 2025 UTC | 
Description: ------------ When pulling large recordsets with PDO DBLIB I get out of memory. This type of large recordset query works fine on mssql_* functions using the freetds library. This issue has been marked "Bogus" in the past. But since this works with other functions using FreeTDS, this issue may lie in the PDO layer. Correct me if my understanding of Bogus is Bogus. Reproduce code: --------------- $pdo_ms = new PDO('dblib: host=host', 'user','pass'); /* We die here */ $rs = $pdo_ms->query("SELECT TOP 50000 from aVeryLargeTable"); Expected result: ---------------- A valid handle to a resultset in $rs Actual result: -------------- Available memory exhausted, tried to allocate....