如何使用 System.Data.OracleClient 将大 Blob 插入 Oracle 10G?
尝试将 315K Gif 文件插入 Oracle 10g 数据库。每次我运行存储过程时都会收到此错误“ora-01460:请求未实现或不合理的转换”。如果我使用存储过程,似乎有 32K 的限制。我在网上读到,如果您正在进行直接插入,则这不适用,但我不知道如何为字节数组创建插入字符串。这是在服务器上运行的胖客户端,因此不用担心 SQL 注入攻击。
任何帮助将不胜感激。仅供参考,代码在 vb.net 中。
谢谢,
戴夫
Trying to insert 315K Gif files into an Oracle 10g database. Everytime I get this error "ora-01460: unimplemented or unreasonable conversion requested" whe I run the stored procedure. It appears that there is a 32K limit if I use a stored procedure. I read online that this does not apply if you are doing a direct insert, but I do not know how to create the insert string for a Byte Array. This is a thick client running on the server so not worried about SQL Injection attacks.
Any help would be greatly appreciated. FYI, code in vb.net.
Thanks,
Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用 System.Data.OracleClient。它存在 BLOB/CLOB 的性能问题。现在它已被 Microsoft 弃用并且不再受支持。请使用 Oracle 的本机 ODP.NET 来代替它。
Do not use System.Data.OracleClient. It has performance issues with BLOBs/CLOBs. Now it's deprecated by Microsoft and will not be supported. Instead of it, use Oracle's native ODP.NET.