Re: Binary data type with other output method

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Andreas 'ads' Scherbaum <adsmail(at)wars-nicht(dot)de>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Binary data type with other output method
Date: 2007-12-27 01:20:59
Message-ID: 4772FDFB.9010207@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Andreas 'ads' Scherbaum wrote:
> The reason for my question is: PHP (yes *grumble*) does not recognize
> boolean columns but instead makes a simple string from a PG boolean.
>
> So every time you select a boolean column in PHP, you cannot use
> expressions like:
>
> if (!$bool)
>
> because 't' and 'f' give TRUE in PHP.
>
> I was begged many times by our people coding PHP to find a workaround
> for this problem.
>
>

The answer is surely to fix the PHP driver rather than trying to mangle
Postgres. The Perl DBD::Pg driver does not suffer this problem, so it
can certainly be worked around (in fact in DBD::Pg you get a choice if
1/0 or t/f values for booleans).

cheers

andrew

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tomasz Ostrowski 2007-12-27 10:09:06 Re: Spoofing as the postmaster
Previous Message Andreas 'ads' Scherbaum 2007-12-26 22:28:39 Re: Binary data type with other output method