我正在使用以下代码创建类型 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 数据插入到该表中。