我与用户private static final String name = "text";
// new string is created and passed in new Test-Object
public Test create1(){
return new Test("text");
}
// static final string passed (as reference?) in new Test-Object
public Test create2(){
return new Test(name);
}
有1个程序。
在这个过程中,我有这个语句调用另一个用户的过程。
CC_DEVICE
但是在编译包时遇到了这个错误:
of_device.p_msg.parse_csd_session(p_message);
答案 0 :(得分:2)
您应该被授予使用该程序:
SQL> conn of_device/pwd1
SQL> grant execute on p_msg to cc_device
SQL> conn cc_device/pwd0
现在您可以在cc_device中使用它...