ID:               19873
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Bogus
 Bug Type:         InterBase related
 Operating System: Windows XP Professional
 PHP Version:      4.2.3
 New Comment:

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...



Previous Comments:
------------------------------------------------------------------------

[2002-10-11 18:35:48] [EMAIL PROTECTED]

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?

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=19873&edit=1

Reply via email to