php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #42794 nested ingres_fetch_object dont work
Submitted: 2007-09-29 06:25 UTC Modified: 2007-10-01 09:21 UTC
From: V dot Bulov at VAZ dot ru Assigned:
Status: Not a bug Package: Ingres II related
PHP Version: 5.2.4 OS: FC6
Private report: No CVE-ID: None
 [2007-09-29 06:25 UTC] V dot Bulov at VAZ dot ru
Description:
------------
Why nested ingres_fetch_object dotn work?
for examle
$link1 = ingres_connect (getenv("Z_NEW"),"kpl","kpl");                               
$link2 = ingres_connect (getenv("Z_NEW"),"kpl","kpl");                                 

$S1 = ingres_query ( "select * from table1 " ,$link1);
while (  $R1 = ingres_fetch_object(INGRES_ASSOC,link1)  ) { 
    $S2 = ingres_query ( "select * from table2 where xx = " . $R1->xx" ,$link2);
    $R2 = ingres_fetch_object(INGRES_ASSOC,link2);

}
In this case fetch only 1 records from table1.
If comments 
//  $R2 = ingres_fetch_object(INGRES_ASSOC,link2);
All work true.
Why?
Where my mistake?


Reproduce code:
---------------
Why nested ingres_fetch_object dotn work?
for examle
$link1 = ingres_connect (getenv("Z_NEW"),"kpl","kpl");                               
$link2 = ingres_connect (getenv("Z_NEW"),"kpl","kpl");                                 

$S1 = ingres_query ( "select * from table1 " ,$link1);
while (  $R1 = ingres_fetch_object(INGRES_ASSOC,link1)  ) { 
    $S2 = ingres_query ( "select * from table2 where xx = " . $R1->xx" ,$link2);
    $R2 = ingres_fetch_object(INGRES_ASSOC,link2);

}
In this case fetch only 1 records from table1.
If comments 
//  $R2 = ingres_fetch_object(INGRES_ASSOC,link2);
All work true.
Why?
Where my mistake?



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-10-01 09:21 UTC] jani@php.net
This is the wrong place to report bugs in PECL extensions.
Use this instead: http://pecl.php.net/bugs/report.php?package=ingres
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 14:01:31 2024 UTC