使用 OO4O 进行 CLOB 写入
我收到错误:OIP-04908:在以下情况下,空 LOB 上不允许此操作 设置 MyClOB_0 = lOraDynaset_0.Fields("FILE_BODY").Value lOraDynaset_0.编辑 amount_writing = MyClOB_0.Write(缓冲区、块大小、ORALOB_FIRST_PIECE)
I get the error : OIP-04908: This operation is not permitted on a Null LOB when
Set MyClOB_0 = lOraDynaset_0.Fields("FILE_BODY").Value
lOraDynaset_0.Edit
amount_written = MyClOB_0.Write(buffer, chunksize, ORALOB_FIRST_PIECE)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在尝试插入 Oracle CLOB 字段时遇到了同样的问题。
我通过以下方法解决了这个问题:
希望这有帮助(抱歉,如果不清楚)
I've just had the same problem when trying to insert into an Oracle CLOB field.
I got around it by:
Hope this helps (sorry if its not clear)