将 Oracle BLOB 数据作为块读取
我有以下关于从 Oracle 获取 BLOB 数据的查询( 我正在尝试使用 OracleDataReader - .Net 读取 BLOB 值。):
是否可以在不将整个 BLOB 加载到服务器内存的情况下将 Oracle 数据库上的 BLOB 数据作为块读取?我相信 OracleDataReader.GetBytes() 会将整个 blob 加载到服务器内存上。
将空缓冲区传递给 GetBytes()
可获取 BLOB 的大小,但这是否需要将 BLOB 加载到服务器内存上?
以块的形式获取 BLOB 大小和 BLOB 数据而不将整个 BLOB 加载到内存中的最佳方法是什么?
I have the following queries on fetching a BLOB data from Oracle (
I am trying to use OracleDataReader
- .Net to read the BLOB value.):
Is it possible to read a BLOB data on Oracle database as chunks without loading the entire BLOB on to server memory? I believe OracleDataReader.GetBytes()
will load the entire blob on server memory.
Passing a null buffer on to GetBytes()
fetches the size of the BLOB but would that require the BLOB to be loaded on server's memory?
What would be the optimal way to fetch the BLOB size and BLOB data as chunks without loading the entire BLOB in memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 DBMS_LOB.READ
Look at DBMS_LOB.READ