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 the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the Java class

NAME

VARCHAR2(4000)

Name of the Java class

METHOD_INDEX

NUMBER

Index of the hosting method of the argument

METHOD_NAME

VARCHAR2(4000)

Name of the hosting method of the argument

ARGUMENT_POSITION

NUMBER

Position of the argument, starting from 0

ARRAY_DEPTH

NUMBER

Array depth of the type of the argument

BASE_TYPE

VARCHAR2(7)

Base type of the type of the argument:

  • int

  • long

  • float

  • double

  • boolean

  • byte

  • char

  • short

  • class

ARGUMENT_CLASS

VARCHAR2(4000)

Actual class name of the argument if the base type is class

See Also:

  • “DBA_JAVA_ARGUMENTS”

  • “USER_JAVA_ARGUMENTS”


数据运维技术 » Oracle 视图 ALL_JAVA_ARGUMENTS 官方解释,作用,如何使用详细说明