Oracle 视图 ALL_JAVA_ARGUMENTS 官方解释,作用,如何使用详细说明
本站中文解释
:
ALL_JAVA_ARGUMENTS是一个视图,用于查询当前使用户可见或有权执行的Java例程和包中定义的参数类型。这个视图存储了方法和过程的参数定义,包括每个参数的名称,类型和顺序,用于查询参数的类定义和属性。
一般情况下,我们可以使用ALL_JAVA_ARGUMENTS视图来查看Oracle Java存储所使用的所有方法和过程的参数类型。可以使用此视图来记录编写JAVA存储过程时使用的参数类型。此外,还可以使用它来查找Java例程和包中定义的参数名称,类型和顺序。
官方英文解释
ALL_JAVA_ARGUMENTS
displays argument information about the stored Java classes accessible to the current user.
Related Views
DBA_JAVA_ARGUMENTS
displays argument information about all stored Java classes in the database.USER_JAVA_ARGUMENTS
displays argument information about the stored Java classes owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the Java class |
|
| Name of the Java class | |
|
| Index of the hosting method of the argument | |
|
| Name of the hosting method of the argument | |
|
| Position of the argument, starting from 0 | |
|
| Array depth of the type of the argument | |
|
| Base type of the type of the argument:
| |
|
| Actual class name of the argument if the base type is |
See Also:
“DBA_JAVA_ARGUMENTS”
“USER_JAVA_ARGUMENTS”
编辑:广州明生医药有限公司
标签:参数,视图,类型,定义,顺序