ORA-29531: no method string in class string
Cause: An attempt was made to execute a non-existent method in a Java class.
Action: Adjust the call or create the specified method.
ORA-29531是一个触发器错误,表示调用了在指定的类String中不存在的方法String。
ORA-29531: 无法调用””方法,它是””类的成员。
ORA-29531错误最常见的原因是当用户试图使用不存在于指定类中的方法时。
1、确认指定的Java类和方法是否正确,尤其考虑大小写。
2、如果类名或方法名有误,请修改正确的类或方法名,并重试。
3、如果指定的方法真实存在,请运行dbms_java.grant_permission来授予该方法的执行权限,并重试。