MLE Foreign Function Interface (FFI): API for calling PL/SQL functionality directly(mle-js-plsql-ffi)
    Preparing search index...

    Function resolvePackage

    • Resolve a PL/SQL package by name.

      Parameters

      • name: string

      Returns any

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

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

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