Re: [cx-oracle-users] BLOBs > 2GB
Brought to you by:
atuining
From: VJ K. <vj...@gm...> - 2010-05-11 21:37:07
|
Anthony Tuininga <anthony.tuininga@...> writes: > > On Tue, May 11, 2010 at 2:18 PM, VJ Kumar <vjkmail@...> wrote: > > Anthony Tuininga <anthony.tuininga@...> writes: > > > >> > >> Hmm, just a question: why would you want to write more than 2 GB at a > >> time? Why not write it in chunks smaller than 2 GB? > > > > I would be happy to, but the write call does not have the offset > > parameter as in: > > > > write(buffer, offset, length). Or does it ? > > It does indeed. Its even in the documentation.... > > write(data, offset = 1) > Right you are ! I did see the parameter, but I wrote my previous remark incorrectly: what I meant was that there is no 'length' parameter (rather than no 'offset') that would allow writing chunks without copying to a smaller buffer. By the way, OCI now has extended writes(OCILobWrite2) with 64 bit offsets and lengths. VJ |