Re: Datatype of domains not reported correctly.

Поиск
Список
Период
Сортировка
От Kris Jurka
Тема Re: Datatype of domains not reported correctly.
Дата
Msg-id alpine.BSO.2.00.0908031340110.17897@leary.csoft.net
обсуждение исходный текст
Ответ на Datatype of domains not reported correctly.  (Thomas Kellerer <spam_eater@gmx.net>)
Ответы Re: Datatype of domains not reported correctly.
Список pgsql-jdbc

On Sat, 1 Aug 2009, Thomas Kellerer wrote:

> I noticed that the getColumns() driver dos not return the proper
> java.sql.Types value for columns that are defined through a domain.
>
> CREATE DOMAIN year AS integer
>     CONSTRAINT year_check CHECK (((VALUE >= 1901) AND (VALUE <= 2155)));
>
> When using getColumns() the driver returns the value 2001 for DATA_TYPE
> (which is java.sql.Types.DISTINCT).

DISTINCT is the JDBC equivalent term for domains.

See Chapter 16 if the JDBC4 spec.

DISTINCT type - a user-defined type based on a built-in type; for
example: CREATE TYPE MONEY AS NUMERIC(10,2) FINAL

So I believe we're doing the right thing here, although our support for
DISTINCT elsewhere is probably lacking.

Kris Jurka

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Oliver Jowett
Дата:
Сообщение: Re: How to retry when connection has been closed?
Следующее
От: Thomas Kellerer
Дата:
Сообщение: Re: Datatype of domains not reported correctly.