Hi RB,
I used this proc to insert data into the table before I tried appending.
I couldnt go ahead with your suggestion of using RAW while inserting as the front end sends data as a BLOB to the proc.Code:CREATE OR REPLACE PROCEDURE Insertblob( BLOBPARAMETER BLOB) AS BEGIN INSERT INTO BLOBTABLE VALUES(1,BLOBPARAMETER); END; /
Thanks a lot...
Sam




Reply With Quote