Oracle中long raw类型在存储过程中的容量问题(100分)

E

erbird

Unregistered / Unconfirmed
GUEST, unregistred user!
表:
create table Usraw
(
ID NUMBER not null,
IMG long raw not null
);

过程:
create or replace procedure UseRaw(id in number, Img in long raw) is
begin
insert into Usraw(id,img) values(id,Img);
end UseRaw;
/
long raw类型可以存储2G的图片,但在PL/SQL中作为变量只能存入小于32K的图片,现在我要存入大于32K的图片,请问在过程中怎么实现??
 
请各位帮帮忙!!
 
SOS!请各位DFW出手。
 
不要意思,这次越界了,请DFW不要介意。
请大家帮看看:
http://expert.csdn.net/Expert/topic/1115/1115199.xml?temp=.4408228

这次我想大家应该有些依据了。
 
请问有人吗??
 
Somebody help me!
 
顶部