dear all; I have googled this and tried reading the documentation but might need a bit of help. I have the following code below
create table file_test (id number, name varchar2(4000), clob_column clob, primary key(id));
now I would like to test it out by writing a simple procedure which will give me an opportunity to pass in a file from anyway in my directory with a particular name a save it to the table and then my final step will be to retreive it. how do I do this? i have looked at the following example below on this thread
2243898
but it wasnt very helpful as such.