I\'m working with an Oracle database, and I would like to read the contents of a BLOB. How do I do this?
When I do a simple select statement, it merely returns \"(BLOB)
If the content is not too large, you can also use
SELECT CAST ( AS RAW( ) ) FROM ; or SELECT DUMP ( CAST ( AS RAW( ) ) ) FROM ; This will show you the HEX values. 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
or
SELECT DUMP ( CAST ( AS RAW( ) ) ) FROM ; This will show you the HEX values. 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
This will show you the HEX values.