中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

BLOB 存入文件

發布時間:2020-07-20 16:16:05 來源:網絡 閱讀:1099 作者:00_yatou 欄目:關系型數據庫
1.向blob字段插入文本
INSERT INTO lobdemo (key, clob_col, blob_col, bfile_col) VALUES (51, 'This is another character literal', HEXTORAW('ABABABABABABABABABAB'),  NULL);

2.更新blob字段文本
UPDATE peoplesoft  SET SUPPLIER_ID = HEXTORAW('CDCDCDCDCDCDCDCDCDCDCDCD') where rownum =2;
update PEOPLESOFT_1M set supplier_id = utl_raw.cast_to_raw(vendor_id) ;

3.向blob字段插入文件

CREATE TABLE yuser (ID number,photo BLOB);

create or replace directory images as '/test';

 declare
   l_bfile bfile;
   l_blob blob;
 begin
   insert into yuser(ID,photo) values(1,empty_blob())
   return photo into l_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_bfile bfile;
   l_blob blob;
 begin
   update yuser set photo = empty_blob() where id = 2
   return photo into l_blob;
   l_bfile:=bfilename('IMAGES','PS.pdf');
   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;
 、


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河东区| 邵阳市| 调兵山市| 永兴县| 鄢陵县| 奉化市| 松原市| 台湾省| 叙永县| 伊金霍洛旗| 嘉禾县| 紫阳县| 北票市| 桐庐县| 资源县| 浪卡子县| 晋江市| 马尔康县| 错那县| 隆化县| 濮阳县| 武陟县| 揭东县| 封丘县| 兴化市| 胶南市| 米脂县| 独山县| 广宁县| 阿巴嘎旗| 本溪| 商丘市| 衡水市| 绥宁县| 崇礼县| 通山县| 吉木乃县| 旺苍县| 焉耆| 隆化县| 连城县|