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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: V dot Bulov at VAZ dot ru
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Sun Dec 22 03:01:28 2024 UTC