关于包含BLOB类型的存储过程,如何传BLOB这个参数例如(下面的语句没有测试,只是表达意思):
create table wmf(wmf_blob BLOB);create or replace procedure proc_test
(blob_test in blob)
is
begin
insert into wmf values(blob_test);
end;如果我想直接向表中插入数据“bbb”可用:
insert into wmf values('bbb');
但是如果我想通过存储过程向里面插入数据,
使用execute proc_test('bbb');,就会报错。请问大侠,如果要使用存储过程,将如何将“bbb”插入表中。
谢谢