|
|
|
|
|
|
Retrieve BLOB image from database using forms 6i [message #478853 is a reply to message #478065] |
Tue, 12 October 2010 23:51 |
|
I have successfully inserted image file in BLOB column in Oracle 10 Database using forms 6i. But I do not know how to retrieve BLOB columns using forms 6i and pl/sql code. Forms items are not database item. I do not want to use execute_query which could be solution. please anybody help me out.
|
|
|
|
Re: Retrieve BLOB image from database using forms 6i [message #519279 is a reply to message #498727] |
Wed, 10 August 2011 12:43 |
|
Code for insert blob file using Forms
FORMS_OLE.ACTIVATE_SERVER('table_name.column_name');
FORMS_OLE.INITIALIZE_CONTAINER('table_name.column_name', file_name);
FORMS_OLE.CLOSE_SERVER('table_name.column_name');
However this code doesnt work after upgrading Adobe Reader to version 10.0.0
|
|
|