RE: Re: [SQL] behavior of ' = NULL' vs. MySQL vs. Standards

From: Mike Mascari <mascarm(at)mascari(dot)com>
To: "'Tom Lane'" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "'Tom Ivar Helbekkmo'" <tih(at)kpnQwest(dot)no>, Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>, Mark Stosberg <mark(at)summersault(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: RE: Re: [SQL] behavior of ' = NULL' vs. MySQL vs. Standards
Date: 2001-06-08 15:24:10
Message-ID: 01C0F00D.8A800260.mascarm@mascari.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


> > The best solution would be to have the ODBC translate instances
of '=
> > NULL' into IS NULL before submitting the query to PostgreSQL.

Tom Lane wrote:

> Does Access only talk to Postgres via ODBC? (Seems plausible, but
I
> don't know.) What about people copying-and-pasting queries
generated
> by Access; is it even possible?

1. Yes, Access only talkes to Postgres via ODBC.

2. The queries generate by Access which use the '= NULL' vs. 'IS
NULL' language are only generated through the use of Access Forms,
when some attempts to fetch a record through the forms interface
where the key of the linked table is an empty edit control. When
access generates queries, it correctly generates 'IS NULL' language.
It is a *very specific problem* WRT the user of Access Forms.

> I doubt that this'd really help much, in any case; it merely moves
the
> necessary switch from the backend to ODBC.

It seems to me that is where it belongs. The ODBC driver is already
doing translation of some Access functions not found in PostgreSQL
such as LCASE->lower, etc. The kludge isn't found in any other RDBMS
of which I am aware (certainly not Oracle), and yet Access works fine
with them,

Just MHO of course,

Mike Mascari
mascarm(at)mascari(dot)com

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2001-06-08 15:25:45 Re: AW: Re: [SQL] behavior of ' = NULL' vs. MySQL vs. Stand ards
Previous Message Thomas Lockhart 2001-06-08 15:10:18 Re: AW: Re: [SQL] behavior of ' = NULL' vs. MySQL vs. Stand ards