I have a large file (~150 MB) that I would like to write to a CLOB, but
I would prefer not to:
<code>
data = file.read()
clob.write(data)
</code>
I see a bit about the clob.write() method in the source. Is doing what I
want as easy as:
<code>
offset = 0
for line in file.xreadlines():
clob.write(line, offset)
offset += len(line)
</code>
???
TIA,
John Ziniti