Skip to Main Content

Say hello to JavaScript for server-side development in APEX!

Oracle Database 23ai offers developers an additional language choice for server-side code: JavaScript. Introducing this hugely popular language powered by GraalVM to the database kernel opens many interesting possibilities, and recent Oracle APEX releases offer great JavaScript support.

After introducing the concepts behind JavaScript in Oracle Database 23ai, this talk shows many easy ways to use JavaScript in modern APEX releases. Starting with SQL workshop, we'll move on to use it for business logic, and end by incorporating externally hosted JavaScript modules like validator.js to perform data validation in a live demo.

Attendees will leave with a better idea of how to leverage JavaScript in APEX, alongside their existing PL/SQL codebase.

Question And Answer

  • #SELECTION#
    #ICON_HTML#

    Can I do an npm install as a APEX developer from within APEX?

    No.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#
  • #SELECTION#
    #ICON_HTML#

    Can you give a comparison between using MLE+GraphQL to achieve these results and just PLSQL to chieve the same results as this demo? I'd like to understand how this method is beneficial (if any).

    the benefit of using MLE+GraphQL is the ease of use: the client application was migrated to the database with only very minor changes. Furthermore there is a GraphQL reference implementation available for JavaScript that can be used to build the API. 

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Can you provide examples of how to perform common server-side tasks, such as database operations or invoking RESTful services, using JavaScript in APEX?

    There are plenty of examples available. You may want to start with the JavaScript Developer's Guide. There are also plenty of blog posts available at https://blogs.oracle.com/developers/ written by Martin Bach (https://blogs.oracle.com/authors/martin-bach)

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Do you provide websockets between MLE JS on server and JS in the browser - I mean a is it possible to have a connection between a browser and server for streaming data in both directions?

    Websockets are not supported at the moment

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Do you think Javascript is the best approach instead of Java or PL/SQL?

    The addition of JavaScript gives more choice to developers, so the answer depends to an extent on the developer’s preference. However, JavaScript does have some natural advantages:

    • Access to a large repository of popular modules from npm
    • Working with JSON data - functional programming
    • Text processing (templating, formatting, …)
    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Does MLE support JET ?

    JET is a JS library for the client side while MLE is dealing with JS on the Server-Side

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Does the database need any components like JavaVM to use this?

    MLE comes fully enabled with Oracle Database 23ai and does not need any external components.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    How would this impact AJAX processes in APEX, example, can everything now be done using JS rather than using PL/SQL?

    MLE JavaScript is another option to create validations, computations, and processes. There are certain operations that cannot be performed with In-Database JavaScript compared to PL/SQL.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    I saw a comparison between Java and Javascript for a specific task, and Java was a lot, lot, lot faster ... though much more cumbersome to code ...

    Performance is of paramount importance. Oracle is constantly working on improving runtime execution speed for all supported server-side languages. The actual performance of a stored procedure or function depends on the workload. The good news is: the implementation choice isn't binary: you can mix and match code from languages in your application.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    I tried to create offline application on apex cloud enviornment but it was not working. Is there any constraint with it?

    Please post your question on the APEX Forum to help you better.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    I'm referring to the database internal component like this. SQL> select comp_name, version, schema from dba_registry where comp_name like '%JAVA%'; COMP_NAME VERSION SCHEMA _______________________________ _____________ _________ JServer JAVA Virtual Machine 23.0.0.0.0 SYS

    MLE is not deployed as a "component" like JServer, it won't be listed under dba_server_registry. It does not depend on JServer either

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    If I do store static file in database then may I call by PL/SQLin 19c?

    MLE/JavaScript is not available with Oracle Database 19c. Oracle Database 21c introduced DBMS_MLE, a package like DBMS_SQL, for executing JavaScript code. Oracle Database 23ai added modules and environments as well as many other features. MLE requires the database to run on Linux x86-64

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    If i do store my function in static file then is there any PL/SQL code to call and store jason in to variable.

    You can create modules from code stored in files via the CREATE MLE MODULE … USING BFILE syntax. You can then create call specifications on this module and call them. If the function returns JSON, it can be used in pl/sql as usual. However, you cannot “directly” execute JavaScript code stored in a static file.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    In general, do you see an improvement for building PWAs with adding Javascript to APEX?

    MLE JavaScript doesn’t provide any immediate advantages for building PWAs in particular over PL/SQL or Java

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Is it possible to call JS code in the browser from JS code in the server? (via DA for example)...

    Yes. Using Execute Server-Side Action and call the JS code.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Is there a specific documentation for available JS API? For example, it’s not quite easy to know that your can use apex.env.PX_XXX to get or set an item.

    JavaScript in general (not specifically for APEX) is documented here:
    https://docs.oracle.com/en/database/oracle/oracle-database/23/mlejs/index.html. There are help-texts for In-Database JavaScript available for computations, processes, and validations. More help text and documentation will be made available over time

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Is there any possibility to call JavaScript function store in static file and store response data in form of JSON into PL/SQL function variable. in Oracle 19c?

    MLE is not available in Oracle 19c. MLE in 23ai fully supports the JSON datatype, so that MLE call specifications can consume JSON arguments, and can also return JSON values that can be used in PL/SQL as usual.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Is there currently, or is there a plan in the future to incorporate a full implementation of VS Code for Browser?

    our code editor is using the Monaco library for VS Code for Browser

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Is this running Node behind the scenes? What version?

    This is running GraalVM's JavaScript engine, not Node. It's a pure JavaScript engine (EcmaScript 2023) which means there is no window object, NodeJS or Web APIs, except for some Web APIs that we added in the newest release, i.e. Oracle Database 23ai, like fetch. See https://oracle-samples.github.io/mle-modules for more information.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Is version 12.2.6 already available on the Oracle Apex Site to explore this new functionality?

    You need APEX 20.2 or later. We recommend to always use the latest. This demo was written using APEX 23.2.6

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Some long time ago we were looking for a simple way to call web services from the database, and found package UTL_DBWS ... but could not find any working examples ... I still think that such a way could be useful, especially for non-APEX shops ...

    The demo today showed how to use `fetch`, which is a quite straight-forward (and standardized Web) API to consume web services. See https://blogs.oracle.com/developers/post/fetching-graphql-data-in-mlejavascript  and https://blogs.oracle.com/developers/post/using-the-javascript-fetch-api-in-oracle-database-23c-freedeveloper-release for more info

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    There is a cost to context switching between SQL and PL/SQL. I assume there is a similar cost for JS, is it of the same magnitude?

    There are indeed context switches. The cost of which depends on your workload. If you would like to understand the impact you should create a JavaScript port of your most important code and run this as part of a limited PoC internally.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Using Execute Server-Side Action and call the JS code." - this way I can call Server-Side JS code from the browser But is it possible to call JS code in the browser from the Server-Side? I mean if we have a APEX session on DB will it be possible to call JS in the browser? (I want to execute JS code in the browser from DB server, not o page load but after the page is loaded) Possible?

    Unfortunately, this isn’t possible

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    What all DB versions can handle Javascript ?

    In-Database JavaScript is supported in 21c and 23ai.;MLE modules, environments, and call specifications are only available in 23ai. “Dynamic” execution of JavaScript snippets via dbms_mle.eval() is available in both 21c and 23ai.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Will Javascript be available on Windows platform?

    JavaScript is only available on x86/Linux at the moment. If there is sufficient customer interest in MLE/JavaScript for Windows a port can be considered.

    #MISC#
    #ACTIONS#
  • #SELECTION#
    #ICON_HTML#

    Will the app created here be made available in the Oracle APEX library?

    The MLE team is working with the APEX team to make that happen in the near future

    #MISC#
    #ACTIONS#

Featured Speakers

  • Speaker

    Marc Sewtz


    Director of Software Development

  • Speaker

    MARTIN B.BACH


    Senior Principal Product Manager

  • Speaker

    Sonja Meyer


    Data Development Specialist

Workshop Info

Session Has Completed - 23 May 2024
1 Hour
English
Oracle APEX Service, Oracle APEX

Other Upcoming Sessions

  • APEX Office Hours

    APEX Office Hours

    15 May 2025 10:00 AM America/New_York

    Seats Available
    Marc Sewtz, Alexis Galdamez, Paige Hanssen, Roopesh Thokala, Toufiq Mohammed
    English
    1 Hour
  • APEX Office Hours

    APEX Office Hours

    19 June 2025 10:00 AM America/New_York

    Seats Available
    Marc Sewtz, Alexis Galdamez, Paige Hanssen, Roopesh Thokala, Toufiq Mohammed
    English
    1 Hour
  • APEX Office Hours

    APEX Office Hours

    17 July 2025 10:00 AM America/New_York

    Seats Available
    Marc Sewtz, Alexis Galdamez, Paige Hanssen, Roopesh Thokala, Toufiq Mohammed
    English
    1 Hour