Re: Couple of patches for jdbc driver

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Couple of patches for jdbc driver
Дата
Msg-id 200106071633.f57GXtq09745@candle.pha.pa.us
обсуждение исходный текст
Ответ на Couple of patches for jdbc driver  (Ned Wolpert <ned.wolpert@knowledgenet.com>)
Список pgsql-jdbc
Your patch has been added to the PostgreSQL unapplied patches list at:

    http://candle.pha.pa.us/cgi-bin/pgpatches

I will try to apply it within the next 48 hours.


> Folks-
>
>   Got two patches that were found by folks on the Castor list, that we'd like to
> submit.  These were done for the jdbc2 driver.  The first one is for support
> of the Types.BIT in the PreparedStatement class.  The following lines need to be
> inserted in the switch statment, at around line 530:
>
>
> (Prepared statment, line 554, before the default: switch
> case Types.BIT:
>      if (x instanceof Boolean) {
>           set(parameterIndex, ((Boolean)x).booleanValue() ? "TRUE" : "FALSE");
>      } else {
>           throw new PSQLException("postgresql.prep.type");
>      }
>      break;
>
>
> The second one is dealing with blobs,
>
> inserted in PreparedStatemant.java (After previous patch line, 558):
>          case Types.BINARY:
>          case Types.VARBINARY:
>                               setObject(parameterIndex,x);
>                               break;
> and in ResultSet.java (Around line 857):
>         case Types.BINARY:
>         case Types.VARBINARY:
>                         return getBytes(columnIndex);
>
>
>
> Virtually,
> Ned Wolpert <ned.wolpert@knowledgenet.com>
>
> D08C2F45:  28E7 56CB 58AC C622 5A51  3C42 8B2B 2739 D08C 2F45
-- End of PGP signed section.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

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

Предыдущее
От: Ned Wolpert
Дата:
Сообщение: Couple of patches for jdbc driver
Следующее
От: Philip Crotwell
Дата:
Сообщение: unlink large objects