Re: double quotes in unicode dbs

From: Thomas Beutin <tyrone(at)laokoon(dot)IN-Berlin(dot)DE>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: double quotes in unicode dbs
Date: 2002-08-08 13:08:08
Message-ID: 20020808150808.E8821@laokoon.bug.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Peter,

On Thu, Aug 08, 2002 at 04:48:02PM +0400, Peter Novodvorsky wrote:
> I'm writing native driver for OpenOffice.Org for PostgreSQL. I used
> to use 8-bit charset db to test a driver (koi8-r, actually), and when I
> tried UNICODE db I've found the following problem: queries with double
> quotes don't work. For example,
>
> SELECT * FROM TEST1;
>
> works, but
>
> SELECT * FROM "TEST1";
>
> doesn't. I'd gladly remove all quoting of table names, but it is done
> by sdbc layer of OpenOffice.Org, and I don't want to hack it.
>
If You are quoting the table names they are treated case sensitive.
Is there an table TEST1 in Your database?

Greetings,
-tb
--
Thomas Beutin tb(at)laokoon(dot)IN-Berlin(dot)DE
Beam me up, Scotty. There is no intelligent live down in Redmond.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Bruno Wolff III 2002-08-08 13:11:00 Re: Create index ... On ... (lower(field1), lower(field2)) doesn't work?
Previous Message Peter Novodvorsky 2002-08-08 12:48:02 double quotes in unicode dbs