Hi All,

Is there any way in oracle where in I can directly insert data send as a byte array from dotnet into the database table using pl/sql?

its like..



Code:
create or replace procedure insertblob(input_blob blob)as
begin
INSERT INTO blobtable (id, blobcolumn) VALUES (blobtable_seq.nextVal, empty_blob());
INSTEAD....
insert into blobtable values (blobtable_seq.nextVal,input_blob);
end;
thanks
Sam