Firebird Php Generator Professional Plastics
Posted By admin On 21.12.19Firebird PHP Generator FAQ. Firebird PHP Generator is a powerful Firebird GUI frontend that allows you to quickly build a professional-quality, 100% responsive website based on your database without any programming. SQL SELECT without FROM clause in PHP with ODBC Firebird driver Hot Network Questions What programming language should a professional mathematician know?
This is exactly the same question as I did before only difference I am trying to run the same select on firebird sql.
I am trying to list Accounts with both their charges as well as payments on a single line and the only difference between charges and payments is the field Credit which is a Boolean either 1 or 0
And this is what I would like the result to look like
But this is the error message I am getting:
1 Answer
Firebird doesn't support IF
statement in DML, but you can use CASE
. And you don't need to use 'sum inside sum'. Try something like this:
Not the answer you're looking for? Browse other questions tagged firebirdfirebird2.5 or ask your own question.
I am trying to compile pdo.so and pdo_mysql.so to get pdo support on my PHP5 install.I tried the following : Hp a6 vision amd quad core drivers.
Compilation is successful but the .so aren't generated. I am supposed to have/specify a mysql installation?
Is the pdo support supposed to be compiled within php core ?If I run a php -m I can see PDO and pdo_mysql registered, but a phpinfo() states no pdo_mysql support.I guess the php -m just tells me php has pdo support but still need the .so?
Could anyone advise?
Thanks
René Höhle2 Answers
Use the following configure options:
The /home/user/programs/mysql/install
directory is where MySQL has been installed.
You should see a pdo_mysql
section in the phpinfo() output showing the following:
Php Code Generator
The latest versions of PHP come with PDO drivers for MySQL, Oracle, PgSQL, ODBC, SQLite and Firebird/Interbase. All you have to do is enable them in your php.ini
:
Here I have MySQL, and PgSQL enabled while all others are disabled.
(This is from a php.ini file from Windows, but on linux it looks pretty much the same, just the extensions are in the form of pdo_mysql.so
, pdo_pgsql.so
, etc.)