php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10358 InterBase module
Submitted: 2001-04-17 03:42 UTC Modified: 2001-04-17 03:54 UTC
From: n dot chansard at cema-france dot fr Assigned:
Status: Not a bug Package: IIS related
PHP Version: 4.0.4pl1 OS: Win 2K
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:
36 + 34 = ?
Subscribe to this entry?

 
 [2001-04-17 03:42 UTC] n dot chansard at cema-france dot fr
It appears that the connection is good (no msg of warning or errors) but the function ibase_query() gives a warning like:

InterBase module: 0 is not link or transaction index

source:

        <?
		$ib_link = ibase_connect("\\\\SPDCCPI01\C:\_BASES\INTRANET.GDB", "SYSDBA", "ib") || die(exit());
		print ("IB_LINK  : $ib_link<BR>\n");
		$ib_query	= "select * from servic";
		print ("IB_QUERY : $ib_query<BR>\n");
		$ib_result	= ibase_query(0, $ib_query);
		ibase_close();
	?>

I can't do less... heelp!

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-04-17 03:54 UTC] ab@php.net
Does this
$ib_result = ibase_query(0, $ib_query);
correct? Seems that there should be $ib_link instead 0.
If this isn't typo, re-open bug.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 09:01:26 2024 UTC