Re: NetBeans (3.5 Dev), Postgresql 7.4dev jdbc

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Charlie Woloszynski <chw(at)clearmetrix(dot)com>
Cc: snpe <snpe(at)snpe(dot)co(dot)yu>, pgsql-jdbc(at)postgresql(dot)org, nbdev(at)netbeans(dot)org, nbusers(at)netbeans(dot)org
Subject: Re: NetBeans (3.5 Dev), Postgresql 7.4dev jdbc
Date: 2003-04-04 15:09:44
Message-ID: 5722.1049468984@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Charlie Woloszynski <chw(at)clearmetrix(dot)com> writes:
> It is my understanding that SQL92 calls for all names to be
> CASE-INSENSITIVE and that PostgreSQL is broken in this respect.

The spec calls for unquoted names to be case insensitive. They are,
in Postgres. The spec also calls for quoted names to be case sensitive.
They are, in Postgres. The place where we diverge from the spec is in
what happens when you write what you intend to be the same name both
with and without quotes at different times. I'd suggest that that is
bad style and you'd best not do it. For one thing, the implied case
conversion is locale-specific (yes, that's per spec too) --- so SQL
that works in one locale may fail in another. The only way to defend
agains the locale risk is to consistently write any given name either
always with quotes, or always without. If you do that then Postgres'
deviation from the spec isn't going to affect you.

For the record, unquoted foo (regardless of case) equates to "FOO" per
spec, but "foo" in Postgres.

regards, tom lane

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message snpe 2003-04-04 18:30:17 Re: NetBeans (3.5 Dev), Postgresql 7.4dev jdbc
Previous Message Dave Cramer 2003-04-04 14:13:46 Re: NetBeans (3.5 Dev), Postgresql 7.4dev jdbc