Обсуждение: How to get column and identifier names in UPPERCASE in postgres?

Поиск
Список
Период
Сортировка

How to get column and identifier names in UPPERCASE in postgres?

От
Amine Tengilimoglu
Дата:
Hi all;

      I want to get the column and other identifier names in UPPERCASE  form rather than a lowercase one without changing application code like qouting the identifiers. Do you know any settings  function or extention for this purpose?

thank you.

Re: How to get column and identifier names in UPPERCASE in postgres?

От
Pavel Stehule
Дата:
Hi

st 20. 11. 2019 v 14:11 odesílatel Amine Tengilimoglu <aminetengilimoglu@gmail.com> napsal:
Hi all;

      I want to get the column and other identifier names in UPPERCASE  form rather than a lowercase one without changing application code like qouting the identifiers. Do you know any settings  function or extention for this purpose?

there is not any possibility

Regards

Pavel


thank you.

Re: How to get column and identifier names in UPPERCASE in postgres?

От
Amine Tengilimoglu
Дата:
:Thank you.

Pavel Stehule <pavel.stehule@gmail.com>, 20 Kas 2019 Çar, 16:12 tarihinde şunu yazdı:
Hi

st 20. 11. 2019 v 14:11 odesílatel Amine Tengilimoglu <aminetengilimoglu@gmail.com> napsal:
Hi all;

      I want to get the column and other identifier names in UPPERCASE  form rather than a lowercase one without changing application code like qouting the identifiers. Do you know any settings  function or extention for this purpose?

there is not any possibility

Regards

Pavel


thank you.

Re: How to get column and identifier names in UPPERCASE in postgres?

От
Olivier Gautherot
Дата:
Hi Amine,

El mié., 20 de noviembre de 2019 10:11, Amine Tengilimoglu <aminetengilimoglu@gmail.com> escribió:
Hi all;

      I want to get the column and other identifier names in UPPERCASE  form rather than a lowercase one without changing application code like qouting the identifiers. Do you know any settings  function or extention for this purpose?

Use double quotes (") - for instance "UPPERCASE"


thank you.