• Resolve a PL/SQL package by name.

    Returns

    a representation of the given package that can be used to interact with the PL/SQL package.

    Example

    // Get the JS represenation.
    const dbmsRandom = resolvePackage('DBMS_RANDOM');

    // Use the representation.
    dbmsRandom.seed(42);
    console.log(dbmsRandom.normal());

    Parameters

    • name: string

    Returns any