Re: Wrong SqlType for boolean columns

Поиск
Список
Период
Сортировка
От Oliver Jowett
Тема Re: Wrong SqlType for boolean columns
Дата
Msg-id 4C4FF183.7040004@opencloud.com
обсуждение исходный текст
Ответ на Wrong SqlType for boolean columns  (fortunasliebling@gmx.de)
Ответы Re: Wrong SqlType for boolean columns
Список pgsql-jdbc
fortunasliebling@gmx.de wrote:

> i found out that my postgres driver maps a boolean column to the sqlType -7, wich is java.sql.Types.BIT and not
java.sql.Types.Boolean(Boolean is 16). This is a very strange behavior.  
>
> I think this is a bug within the jdbc-driver.

It is not a bug. BOOLEAN does not exist in earlier JDBC versions, and
drivers can map boolean types to either BIT or BOOLEAN. We pick BIT so
we can build drivers for earlier JDBC versions. (BIT is something of a
confusing type, as the mappings defined by JDBC for the JDBC BIT type
only really make sense for a single boolean value, not a SQL BIT(n) type)

See the datatype mapping tables in Appendix B of the JDBC spec.

I agree that it is confusing, but that is just a reflection of the JDBC
spec being confusing..

-O

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

Предыдущее
От: fortunasliebling@gmx.de
Дата:
Сообщение: Wrong SqlType for boolean columns
Следующее
От: Thomas Kellerer
Дата:
Сообщение: Re: Wrong SqlType for boolean columns