Resolve a PL/SQL package by name.
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());
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