Hi, Thanks in advance. Kindly let me know how to store an image in Oracle database, retrieve from the database to display it in Java. Regards, Rama Kumar
Hi Kumar, I assume you already have your image as a binary file. You would need to store it in a BLOB (binary large object) column in the database - plain JDBC does it nicely. Then just use a Swing component or awt Graphics object to show it. Kathy
can't say I'm a pro at working with images by any means, but Oracle's JDBC driver provides API to perform selects, updates, inserts and deletes to images from LOB columns. Maybe you could explain to me the differences/advantages of BFILEs over BLOBs as I'm unsure.(or a link would be good too!) If I find any, I'll post them. Jamie Jamie