Overview of Dynamic MLE Execution
Dynamic MLE execution allows developers to invoke JavaScript snippets via the DBMS_MLE package without storing the JavaScript code in the database.
As an alternative to executing JavaScript code using modules, MLE provides the option of dynamic execution. With dynamic execution, no JavaScript code is stored in the data dictionary. Instead, you can invoke snippets of JavaScript code via the DBMS_MLE package.
See Also:
-
Server-Side JavaScript API Documentation for information about built-in module
mle-js-bindings, used to exchange values between PL/SQL and JavaScript -
Oracle AI Database PL/SQL Packages and Types Reference for more information about the
DBMS_MLEpackage
Topics
-
About Dynamic JavaScript Execution
Developers can run JavaScript dynamically either inline or by loading files via
DBMS_MLE. Dynamic MLE execution provides an additional method for using JavaScript to interact with the Oracle AI Database, as an alternative to using MLE modules. -
The steps required to perform dynamic MLE execution are described.
-
Returning the Result of the Last Execution
Use the
resultargument to get the outcome of the last execution.