Problem : Sql queries are created in lowercase - Mailing list pgsql-jdbc

From Josep
Subject Problem : Sql queries are created in lowercase
Date
Msg-id 1159728420.912683.121260@i3g2000cwc.googlegroups.com
Whole thread Raw
Responses Re: Problem : Sql queries are created in lowercase  (Euler Taveira de Oliveira <euler@timbira.com>)
List pgsql-jdbc
Hi friends,
I am using postgresql 81 and I have seen that when you launch an sql
sentence with psql admin III of create for example :

CREATE TABLE CONTACT
(
  id int8 NOT NULL,
  firstname varchar(255),
  lastname varchar(255),
  email varchar(255),
  CONSTRAINT contact_pkey PRIMARY KEY (id)
)
WITHOUT OIDS;
ALTER TABLE CONTACT OWNER TO prova;

Then this table is created but in lowercase :-( , if you create the
table manually then is created how you put( lowerCase or UpperCase).

When using JDBC its happend the same, if I created a table from jdbc
with uppercase then is created in lowercase and this is a problem
becouse if you launch a select searching "contact" is not the same that
searching "CONTACT" and all goes bad :-(.

I have tryed with all drivers of jdbdc of postresql and the same
happens.

Some Idea?


pgsql-jdbc by date:

Previous
From: Holger Schulz
Date:
Subject: Bug extracting bit value
Next
From: Euler Taveira de Oliveira
Date:
Subject: Re: Problem : Sql queries are created in lowercase