|
|
3 or 4 Images can save in table [message #161949 is a reply to message #161803] |
Wed, 08 March 2006 00:17 |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
***********Thank you Orafaq.com Forum********
I create table image_table.
Name Null? Type
------------------------------- -------- ----
FILENAME NOT NULL VARCHAR2(255)
IMAGE LONG RAW
**write a triger
--when-validate-item-- on filename
DECLARE
filename VARCHAR2(256);
BEGIN
filename := GET_FILE_NAME(File_Filter=> 'JPEG Files (*.jpg)|*.jpg|');
READ_IMAGE_FILE(filename, 'JPG', 'image_table.image');
end;
I am working on this and working well but it stores one image in one table.
Now I want to store 3 or 4 image in table.
this is possbile???
Kamran
|
|
|
|