php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19873 Unable to load dynamic library 'c:\php\php_interbase.dll' dialog box error.
Submitted: 2002-10-11 18:35 UTC Modified: 2002-10-11 18:40 UTC
From: jchollet at yahoo dot com Assigned:
Status: Not a bug Package: InterBase related
PHP Version: 4.2.3 OS: Windows XP Professional
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: jchollet at yahoo dot com
New email:
PHP Version: OS:

 

 [2002-10-11 18:35 UTC] jchollet at yahoo dot com
I'm trying to make a connection to an Interbase 5 database with the following code:

<?php
	$dbh = ibase_connect('localhost:c:\interbase5\tutorial\tutorial.gdb', 'tutor', 'tutor4ib');
	$stmt = 'SELECT * FROM Country';
	$sth = ibase_query($dbh, $stmt);
	//while ($row = ibase_fetch_object($sth)) {
	//	echo $row->email, "\n";
	//} 
	ibase_free_result($sth);
	ibase_close($dbh);
?>

NOTE: The lines as comments are for testing purposes.

My problem is I get a dialog box with the following error message:

Unable to load dynamic library 'c:\php\php_interbase.dll'.

I made sure the extensions path is correct and the php_interbase.dll line isn't commented in php.ini like this:

extension_dir = c:\php\extensions\

extension=php_interbase.dll

I have been looking for a way to fix this on the web but I haven't found anything. Does this only work with Interbase 6?

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-11 18:40 UTC] sniper@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.


Look here:

http://www.php.net/manual/en/install.windows.php#install.windows.extensions

You need the extra dll...

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 11:01:30 2024 UTC