Re: [Firebird-net-provider] Write Large BLOB

2007-04-23 Thread Michele Lepri
Miroslav Lences ha scritto: > I want to implement a binary blob in my database app. I have read the docs > and understand how to use getBytes to read from the blob in small chunks. > How do I write to a blob in small chunks? My blob may be larger than my > memory so using a byte[] is not possible.

Re: [Firebird-net-provider] Write Large BLOB

2007-04-23 Thread Jiri Cincura
Miroslav Lences wrote: > I want to implement a binary blob in my database app. I have read the docs > and understand how to use getBytes to read from the blob in small chunks. > How do I write to a blob in small chunks? My blob may be larger than my > memory so using a byte[] is not possible. AFAI

[Firebird-net-provider] Write Large BLOB

2007-04-23 Thread Miroslav Lences
I want to implement a binary blob in my database app. I have read the docs and understand how to use getBytes to read from the blob in small chunks. How do I write to a blob in small chunks? My blob may be larger than my memory so using a byte[] is not possible. ---