How to insert blob file into the database
941614Jun 7 2012 — edited Jun 7 2012HI i have a table with the following structure:
SQL> desc category_details;
Name Null? Type
----------------------------------------- -------- ----------------------------
CATEGORY_ID NOT NULL NUMBER(20)
CATEGORY_NAME NOT NULL VARCHAR2(25)
DESCRIPTION NOT NULL CLOB
PICTURE NOT NULL BLOB
Now i want to insert values into the table..What is the syntax for it???
how to insert the blob value??????