I have a silly question. Is there a difference between unset() and ibase_close() in terms of ending connection to Firebird Database using ibase_connect()? I know that some people use unset() to PDO connections etc. Like: And then: or If they both are behaving the same, maybe one function is faster than the other one? Answer My knowledge of PHP is
Tag: firebird
Connect PHP 7.4 to Firebird database: could not find driver
I’m following the docs to connect php to firebird database. I activated the extension in php.ini I restarted apache on xampp, and I copy pasted the code of the docs for testing. when I run the code I get could not find driver what am I missing here? environment: XAMPP with PHP 7.4 Windows 10 Answer The problem is that
Firebird driver not found in PHP or XAMPP
I lost a day trying to connect to a firebird database when I started my first PHP project with it, so I want to share my solutions that maybe can help others in the future (or myself). Answer There are few rules but very important: Check your PHP architecture (32 or 64 bits) Check the database version (if you have
Impossible to load pdo driver on Windows Server 2016
Im trying to load the pdo driver for firebird database on a windows server 2016 (64 bits). Configuration is the next : Firebird in 32 bits successfully installed. Apache 2.4 successfully installed (Apachelounge binary, 32 bits). Apache configuration properly set (installed in C:/Apache24) PHP 32 bits successfully installed (in C:/PHP) as a module with mod_php (apache handler 2.0). As a
IIS+PHP 7 +Firebird
I am trying to configure IIS+PHP 7 + firebird. IIS and PHP are working fine but when I try to connect to a firebird db it shows this message: “Could not connect to localhost: We were unable to use the Firebird database because the ibase extension for PHP is not installed. Check your PHP.ini to see how you can enable
PHP PDO Firebird inserting
I’m new in Firebird but I’d like to write a small script in PHP that reads a CSV file and fills an existing Firebird db with its data. The problem is I don’t really know how to use the autoincrement …