From:             lunter at interia dot pl
Operating system: WinXP
PHP version:      5.3CVS-2007-12-29 (CVS)
PHP Bug Type:     PDO related
Bug description:  PDOStatement->nextRowset() doesn't work

Description:
------------
PDOStatement->nextRowset() doesn't work


Reproduce code:
---------------
<?
 $h=new PDO('mysql:host=localhost;dbname=root','root','root');

// $q=$h->query('CALL some_proc()');
 $q=$h->query('SELECT 1 AS col;SELECT 2 AS col;');

 $r=$q->fetchAll(PDO::FETCH_ASSOC);
 print_r($r);

 $q->nextRowset();
 $r=$q->fetchAll(PDO::FETCH_ASSOC);
 print_r($r);
?>


Expected result:
----------------
Array ( [0] => Array ( [col] => 1 ) ) 

Array ( [0] => Array ( [col] => 2 ) ) 


Actual result:
--------------
Array ( [0] => Array ( [col] => 1 ) ) 

Array ( ) 


-- 
Edit bug report at http://bugs.php.net/?id=43707&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=43707&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=43707&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=43707&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=43707&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=43707&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=43707&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=43707&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=43707&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=43707&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=43707&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=43707&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=43707&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=43707&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=43707&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=43707&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=43707&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=43707&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=43707&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=43707&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=43707&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=43707&r=mysqlcfg

Reply via email to