使用 OO4O 进行 CLOB 写入

发布于 2024-08-15 05:56:37 字数 174 浏览 7 评论 0原文

我收到错误: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑凤梨 2024-08-22 05:56:37

我在尝试插入 Oracle CLOB 字段时遇到了同样的问题。

我通过以下方法解决了这个问题:

  1. 将 Oracle 字段设置为“空”(VB6 关键字 Empty - 例如 MyClOB_0.Value = Empty)
  2. 执行插入(例如 lOraDynaset_0.Update)
  3. 编辑动态集记录(例如 lOraDynaset_0.Edit)
  4. 设置 Clob 字段值到你想要的
  5. 执行更新(例如lOraDynaset_0.Update)

希望这有帮助(抱歉,如果不清楚)

I've just had the same problem when trying to insert into an Oracle CLOB field.

I got around it by:

  1. Setting the Oracle field to 'Empty' (the VB6 keyword Empty - e.g. MyClOB_0.Value = Empty)
  2. Performing the insert (e.g. lOraDynaset_0.Update)
  3. Editing the dynaset record (e.g. lOraDynaset_0.Edit)
  4. Setting the Clob field value to what you want it
  5. Performing the update (e.g. lOraDynaset_0.Update)

Hope this helps (sorry if its not clear)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文