Basically the database is as follows
Name Null? Type
----------------------------------------- -------- ------------
ISBN NOT NULL NUMBER(10)
NAME VARCHAR2(30)
GENRE VARCHAR2(10)
WARNING VARCHAR2(3)
RELEASEDATE DATE
PRICE NOT NULL NUMBER(10)
GAME_PIC BLOB
My question is what is the correct insert statement to include the image currently stored as c:/temp/GameCover.jpeg
Insert into gameDetails VALUES ('1122345','Tom', 'Horror', '+15', '12/03/03', 20, ??????);
Thanks in advance for any help you guys can give,
Patros
Name Null? Type
----------------------------------------- -------- ------------
ISBN NOT NULL NUMBER(10)
NAME VARCHAR2(30)
GENRE VARCHAR2(10)
WARNING VARCHAR2(3)
RELEASEDATE DATE
PRICE NOT NULL NUMBER(10)
GAME_PIC BLOB
My question is what is the correct insert statement to include the image currently stored as c:/temp/GameCover.jpeg
Insert into gameDetails VALUES ('1122345','Tom', 'Horror', '+15', '12/03/03', 20, ??????);
Thanks in advance for any help you guys can give,
Patros