Re: Exception when inserting boolean values into BIT columns

Поиск
Список
Период
Сортировка
От Thomas Dudziak
Тема Re: Exception when inserting boolean values into BIT columns
Дата
Msg-id 224f323405062005231457ebaa@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Exception when inserting boolean values into BIT columns  (Oliver Jowett <oliver@opencloud.com>)
Список pgsql-jdbc
On 6/20/05, Oliver Jowett <oliver@opencloud.com> wrote:
> As I understand it, JDBC's BIT/BOOLEAN types (single boolean value)
> aren't the same as PostgreSQL's BIT type (bit string). The JDBC driver
> maps setBoolean(), setObject(...,Types.BIT), and
> setObject(...,Types.BOOLEAN) to the 'boolean' datatype.
>
> Try using the boolean type in your schema, assuming what you want to
> store is a single boolean value. If you really want a bitstring, you'll
> probably need to do something nasty like pass the value via setString()
> and use 'pg_catalog.bit(?)' in your query to do the type conversion
> (CAST AS doesn't seem to work from brief testing)

Ah, yes, didn't notice that. Yep, I wanted to store a boolean value,
so I'll use postgresql's boolean type instead.

Thanks for pointing this out to me,
Tom

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

Предыдущее
От: Oliver Jowett
Дата:
Сообщение: Re: Exception when inserting boolean values into BIT columns
Следующее
От: Akhil Srinivasan
Дата:
Сообщение: Re: Problems with temporary tables created in callable functions