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的图片,请问在过程中怎么实现??
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的图片,请问在过程中怎么实现??