- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想也许我开始在这里得到这个过程,但它太奇怪了,我怀疑自己。下面看评论,有什么乱七八糟的地方。
DECLARE
srcFile BFILE := BFILENAME('SOME_DIR', 'xyz.pdf');
fLen NUMBER;
dest BLOB;
BEGIN
INSERT INTO SomeTable
VALUES ( 1, 'xyz.pdf', EMPTY_BLOB(), null ) -- Does this establish an active ref.?
RETURNING pdf_file INTO dest;
DBMS_LOB.OPEN(srcFile, dbms_lob.file_readonly);
fLen := dbms_lob.getlength(srcFile);
DBMS_LOB.LOADFROMFILE(dest, srcFile, fLen); -- Does this reach into the table row,
-- and fill it with the file’s contents?
dbms_lob.close(srcFile);
commit;
END;
下面的方法是更新已经存在的行中的 BLOB 吗?
DECLARE
srcFile BFILE := BFILENAME('SOME_DIR', 'xyz.pdf');
fLen NUMBER;
dest BLOB;
BEGIN
SELECT pdf_file INTO dest -- Does this est. an active reference?
FROM SomeTable
WHERE ID = 1; -- ( <———<<< ' = 1' is just for example.)
DBMS_LOB.OPEN(srcFile, dbms_lob.file_readonly);
fLen := dbms_lob.getlength(srcFile);
DBMS_LOB.LoadFromFile(dest, srcFile, fLen); -- Does this reach into the row,
-- filling it w/ the file’s contents?
dbms_lob.close(srcFile);
commit;
END;
这看起来更像是 .NET 对数据库适配器以及 FileInfo、DirInfo 函数的处理。但我在 Oracle 的其他任何地方都没有看到这种理念。
我早就料到了
BLOBVariable = LoadFromFile(srcLocator, byteCnt); -- where the func. rtrns a val,
跟着
INSERT INTO SomeTable (pdf_file)
VALUES (BLOBVariable);
我没看错吗?如果是这样,什么时候放弃引用?我似乎记得读过使用“LoadFromFile?”时不需要“提交”的内容?
现在,今天早上我看到了一个示例(没有解释),它选择 BLOB 字段到一个变量中,使用 FOR UPDATE 来锁定记录。了解这是怎么回事可能会很好......
-- Lock the record
execute immediate 'SELECT pdf_file INTO dest
FROM image_blobs
WHERE itl_image_blob_id = :1
FOR UPDATE'
INTO v_blob_data
using < the row identifier goes here >;
-- Read the file
dbms_lob.loadfromfile(dests, srcFile, fLen);
-- update the blob field
execute immediate '
UPDATE image_blobs
SET pdf_file = :1
WHERE itl_image_blob_id = :2'
using dest, < row identifier >;
最佳答案
以下内容表明我的理智完好无损,INSERT 语句确实创建了 loadfromfile()
使用的引用。这个关于 INSERT 语句的答案足以满足我的目的,因此我将假设 UPDATE 功能是相似的。 'IMPORT_DIR'
是数据库中的命名数据库目录。
DROP TABLE TEST_BLOBS purge; -- 'purge' prevents loading up the recycle bin.
CREATE TABLE TEST_BLOBS (
ID VARCHAR(4),
F_NAME VARCHAR2(50 BYTE),
CONTENT_TYPE VARCHAR2(50 BYTE),
F_SIZE NUMBER(10),
BLOB_DATA BLOB DEFAULT empty_blob() );
DECLARE
dest blob; tmp_id varchar2(4);
v_f_sz NUMBER(10); b_file BFILE := NULL;
fName VARCHAR2 (50);
CURSOR get_items IS SELECT filename FROM My_Table_of_names;
BEGIN
FOR a_rec IN get_items LOOP
fName := a_rec.filename;
b_file := BFILENAME ( 'IMPORT_DIR', fName );
IF DBMS_LOB.fileexists (b_file) = 0 THEN
-- Report the problem and exit.
END IF;
DBMS_LOB.fileopen ( b_file, DBMS_LOB.file_readonly );
v_f_sz := DBMS_LOB.getlength (b_file);
INSERT INTO test_blobs ( ID, content_type, f_name, f_size, blob_data )
VALUES ( <Some_ID_val>, 'application/pdf', fName, v_f_sz, empty_blob() )
RETURNING blob_data, ID INTO dest, tmp_id;
-- Table field contains data, (HUGEBLOB),
-- when debugging and loop ends here.
DBMS_LOB.loadfromfile(dest, b_file, v_f_sz);
DBMS_LOB.close(b_file);
-- After running this, the variable tmp_id has the value that was assigned in the INSERT statement,
-- and the table’s fields, 'BLOB_Data', have the contents of the files. dest is indeed a reference
-- to the row and field, allowing LoadFromFile() to put data into the table.
END LOOP;
END;
/
关于oracle - DBMS_LOB.LoadFromFile 完整性检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50805798/
我创建了以下函数 function lob_replace( p_lob in out clob,p_what in varchar2,p_with in clob ) return clob a
我不太明白 dbms_lob.createtemporary() 函数的要点。怎么: DECLARE myclob CLOB; BEGIN myclob := 'foo'; END;
我想也许我开始在这里得到这个过程,但它太奇怪了,我怀疑自己。下面看评论,有什么乱七八糟的地方。 DECLARE srcFile BFILE := BFILENAME('SOME_DIR',
我正在尝试将 XML 文件的信息保存在数据库表中,并且我正在使用以下过程: create or replace PROCEDURE P_FILEUPLOAD_XML (P_CMTT_CODE IN N
谁能告诉我如何将下面的 Oracle 代码转换为 Postgresql IF prodNum = 1 THEN DBMS_LOB.WRITEAPPEND(pkgFilterNode
谁能告诉我如何将下面的 Oracle 代码转换为 Postgresql IF prodNum = 1 THEN DBMS_LOB.WRITEAPPEND(pkgFilterNode
当我尝试在 BLOB 字段上运行 dbms_lob.substr 函数时,出现以下错误: ORA-06502: PL/SQL: numeric or value error: raw variable
oracle 是否有根据 CLOB 字段的字节数获取子字符串的方法? select DBMS_LOB.SUBSTR(a.COMMENTS, 3998, 1) FROM FOO; 我收到错误: "ORA
我得到了相同的结果 select length(column_name) from table 自 select dbms_lob.getlength(column_name) from table
我是一名优秀的程序员,十分优秀!