Problem : Sql queries are created in lowercase

Поиск
Список
Период
Сортировка
От Josep
Тема Problem : Sql queries are created in lowercase
Дата
Msg-id 1159728420.912683.121260@i3g2000cwc.googlegroups.com
обсуждение исходный текст
Ответы Re: Problem : Sql queries are created in lowercase
Список 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 по дате отправления:

Предыдущее
От: Holger Schulz
Дата:
Сообщение: Bug extracting bit value
Следующее
От: Euler Taveira de Oliveira
Дата:
Сообщение: Re: Problem : Sql queries are created in lowercase