php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13057 -An error in ingres_fetch_object() function
Submitted: 2001-08-30 07:53 UTC Modified: 2001-08-30 20:05 UTC
From: V dot Bulov at VAZ dot ru Assigned:
Status: Not a bug Package: *Database Functions
PHP Version: 4.0.6 OS: Linux Mandrake 7.2
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
41 - 10 = ?
Subscribe to this entry?

 
 [2001-08-30 07:53 UTC] V dot Bulov at VAZ dot ru
An error  due to 2 databases connect ion  at the same time 
in functuion   ingres_fetch_object() , but all okey
in function      ingres_fetch_row()
<?php 
    $lin0 = ingres_connect (v16,v16,test9);                                    ??   
    $lin1 = ingres_connect (kpl,kpl,kpl  );                                    ?
?// ################## DO NOT WORK                                             ??  
    ingres_query ("select * from m01 where id = 87",$lin0);                    ??   
    while ($row = ingres_fetch_object($lin0)) {                                ??      
        printf ("</>%s|%5.5d|%32.32s|</p>",++$i,$row->id,$row->dir);            ??   
    }                                                                          ??   
    ingres_query ("select * from m01 where id = 55",$lin1);                    ??   
    while ($row = ingres_fetch_object($lin1)) {                                ??      
        printf ("</>%s|%5.5d|%32.32s|</p>",++$i,$row->id,$row->dir);            ??   
    }                                                                          ??
 / / ################## WORK                                                    ??   
    ingres_query ("select * from m01 where id = 87",$lin0);                    ??   
    while ($row = ingres_fetch_row($lin0)) {                                   ??      
        print ( "</>$row[1] $row[2] $row[3] $row[4] $row[5] $row[6]</p>");      ??   
   }                                                                          ??   
    ingres_query ("select * from m01 where id = 55",$lin1);                    ??   
    while ($row = ingres_fetch_row($lin1)) {                                   ??      
    print ( "</>$row[1] $row[2] $row[3] $row[4] $row[5] $row[6]</p>");             ??   
}                                                                          ?
?>  ?

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-30 20:05 UTC] sniper@php.net
RTFM: http://www.php.net/ingres_fetch_object

(hint: Check the parameters this function accepts)

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 21:01:31 2024 UTC