LOADBLOBFROMFILE¶
从文件读取BLOB数据
声明¶
DBMS_LOB.LOADBLOBFROMFILE (
dest_lob IN OUT NOCOPY BLOB,
src_bfile IN BFILE,
amount IN BIGINT,
dest_offset IN OUT BIGINT,
src_offset IN OUT BIGINT);
结构¶
| 参数 | 说明 |
|---|---|
| dest_loc | 目的定位器 |
| src_bfile | 文件路径 |
| amount | 字节数目 |
| dest_offset | 定位器偏移(输入)写完之后的偏移量(输出) |
| src_offset | 文件偏移量(输入)读完之后的偏移量(输出) |