Insert BLOB image file in oracle database table
Here we will discuss how to insert BLOB file in the database. For this we will create a table and then a procedure that will be used to insert records in the table. Use following script to create an employee table CREATE TABLE SV_EMP_PHOTO( ID NUMBER(3) NOT NULL, PHOTO_NAME VARCHAR2(40), PHOTO_RAW BLOB, EMP_NAME […]
Recent Comments