创建包主体时,我无法从包主体内的另一个数据库链接中进行选择?因此,我不知道之前的 dblink 名称的值
Create or replace package body sth as
procedure getvalues(linkname in char)
is
begin
select col1 from table1@linkname;
end getvalues;
end sth;
当我创建这个时,我得到那个表或视图不存在..链接名称我不知道它之前的 in 参数将用作:
getvalues(linkname => dbname);
你怎么能在包体内有这些值?