加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

BLOB 存入文件

发布时间:2020-12-12 14:38:13 所属栏目:百科 来源:网络整理
导读:CREATETABLEyuser(IDnumber,photoBLOB);createorreplacedirectoryimagesas'/test';declarel_bfilebfile;l_blobblob;begininsertintoyuser(ID,photo)values(1,empty_blob())returnphotointol_blob;l_bfile:=bfilename('IMAGES','test.doc');--IMAGES是上面创
CREATETABLEyuser(IDnumber,photoBLOB);

createorreplacedirectoryimagesas'/test';

declare
l_bfilebfile;
l_blobblob;
begin
insertintoyuser(ID,photo)values(1,empty_blob())
returnphotointol_blob;
l_bfile:=bfilename('IMAGES','test.doc');--IMAGES是上面创建目录的大写
dbms_lob.open(l_bfile,dbms_lob.file_readonly);
dbms_lob.loadfromfile(l_blob,l_bfile,dbms_lob.getlength(l_bfile));
dbms_lob.close(l_bfile);
commit;
end;
/

update的方式

declare
l_bfilebfile;
l_blobblob;
begin
updateyusersetphoto=empty_blob()whereid=2
returnphotointol_blob;
l_bfile:=bfilename('IMAGES','PS.pdf');
dbms_lob.open(l_bfile,dbms_lob.getlength(l_bfile));
dbms_lob.close(l_bfile);
commit;
end;
、

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读