Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> How to ad a blob value to a table
CREATE TABLE faculty
(f_id NUMBER(6),
f_last VARCHAR2(30), f_first VARCHAR2(30), f_mi CHAR(1),
f_phone VARCHAR2(10), f_rank VARCHAR2(8), f_pin NUMBER(4), f_image BLOB,
INSERT INTO faculty VALUES
(3, 'Williams', 'Jerry', 'F', 56, '7155555412', 'ASST', 8531,
EMPTY_BLOB());
When entering a record, how is the blob image entered? Do I use
single quotes around the image field? DO I enter the name of the blob
image if I know it? The name of the image is williams.jpg
Thanks Received on Sat Jun 15 2002 - 15:10:34 CDT
![]() |
![]() |