Re: create BLOB question

Поиск
Список
Период
Сортировка
От Barry Lind
Тема Re: create BLOB question
Дата
Msg-id 3E4927EC.4000207@xythos.com
обсуждение исходный текст
Ответ на Re: create BLOB question  (Jeremiah Jahn <jeremiah@cs.earlham.edu>)
Ответы Re: create BLOB question
Список pgsql-jdbc

Jeremiah Jahn wrote:
> I'm writing the BLOB wrapper.
>
> 3 methods have ambiguous implementations.
>
>  public java.io.OutputStream setBinaryStream(long pos) throws SQLException{
>  }
>  public int setBytes(long pos,byte[] bytes)  throws SQLException{
>  }
>  public int setBytes(long pos,byte[] bytes,int offset,int len)  throws SQLException{
>  }
>
> If I already have an array of data. An I start writing to it at position
> pos, does it overwrite the old data or insert into the array at that
> point and move the old data down toward the end?
>

My understanding is that it should overwrite the data at that point.

--Barry




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

Предыдущее
От: Jeremiah Jahn
Дата:
Сообщение: Re: create BLOB question
Следующее
От: Jeremiah Jahn
Дата:
Сообщение: Re: create BLOB question