From:             [EMAIL PROTECTED]
Operating system: Windows XP Professional
PHP version:      4.2.3
PHP Bug Type:     InterBase related
Bug description:  Unable to load dynamic library 'c:\php\php_interbase.dll' dialog box 
error.

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 bug report at http://bugs.php.net/?id=19873&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=19873&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=19873&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=19873&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=19873&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=19873&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=19873&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=19873&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=19873&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=19873&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=19873&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=19873&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=19873&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=19873&r=isapi

Reply via email to