• Import a value exported from PL/SQL into the current context

    Import the value, identified by the given name, that was previously exported from PL/SQL. The desired result type can be specified explicitly with the jstype parameter. If no result type is specified, the default PL/SQL-to-JavaScript mapping is used to determine the result type implicitly.

    Returns

    a JavaScript value of the desired type. Returns undefined if the property does not exist.

    Throws

    an exception (Invalid property name) if name is null, undefined or empty.

    Parameters

    • name: string

      Name of the property to be retrieved. Cannot be null, undefined or empty.

    • Optional jstype: JSTypes

      JavaScript type of the result.

    Returns any