I’m connected, using Eclipse database development view (standard of Eclipse Indigo), to an Oracle DB in which, for a particular record (that I already know), I want to view one column content in “text” form (although the column contains BLOB data).
When I simply do a
select MYBLOBCOLUMN from MYTABLE where ID='myid'
SQL results view only show an execution log, but no data. So, how can I see that BLOB content ?
The BLOB datatype was invented in order to be able to transfer “custom” objects from one database to another. The Database itself has no idea how to interpret and display the stored data in the blob field.
It can be an image, application, video, audio or anything else. If you have stored normal text in a blob field your database program has no idea that it is regular text.
If you store text in a database, you better use (n)varchar or memo data type.