2

我正在使用以下代码创建类型 INFOS 作为对象:

 create or replace TYPE INFOS AS OBJECT
 (
    NAME VARCHAR2(50 BYTE),
    PICTURE BLOB
 ) 

以及使用类型 INFOS 的表 CLIENT:

create table client
(
    ID_CLIENT int not null primary key,
    INFORMATIONS INFOS
)

代码插入:

insert into client values(1,INFOS('john',EMPTY_BLOB()))

我无法将 INFO.PICTURE 列返回到变量中。

那么,我如何将 BLOB 数据插入到该表中。

4

1 回答 1

4
declare
  i infos;
  b blob;
begin
  insert 
    into client 
    values(1, INFOS('John', EMPTY_BLOB()))
    returning informations into i;
  b := i.picture;
  -- You can use b here
end;
于 2013-08-11T05:31:14.187 回答