Re: Why is bool == java.sql.Types.BIT ??

Поиск
Список
Период
Сортировка
От Oliver Jowett
Тема Re: Why is bool == java.sql.Types.BIT ??
Дата
Msg-id 43850037.5000608@opencloud.com
обсуждение исходный текст
Ответ на Re: Why is bool == java.sql.Types.BIT ??  (Thomas Kellerer <spam_eater@gmx.net>)
Ответы Re: Why is bool == java.sql.Types.BIT ??  (Thomas Kellerer <spam_eater@gmx.net>)
Список pgsql-jdbc
Thomas Kellerer wrote:

> The problem comes when supporting multiple DBMS. With MS SQL Server a
> bit column can only store 0/1 (which is not what the driver returns, as
> it uses a java.lang.Boolean) but PG only accepts the literals
> true/false. That's why I stumbled over this in the first place.
>
> So I'll have to check the native type rather then the JDBC type to be sure.

Can't you use setBoolean()/getBoolean()? I think that's specified to
always work on a BIT column, whatever the real underlying type is.

-O

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

Предыдущее
От: Thomas Kellerer
Дата:
Сообщение: Re: Why is bool == java.sql.Types.BIT ??
Следующее
От: Oliver Jowett
Дата:
Сообщение: Re: Logging from multiple connections