This section provides information about and examples of use of JavaScript libraries in JavaScript stored programs as supported by the Multilingual Environment (MLE) in MySQL Enterprise Edition 9.2 and later. (See Section 7.5.8, “Multilingual Engine Component (MLE)”).
First we create a database jslib
, and make it
the current database, like this:
mysql> CREATE DATABASE IF NOT EXISTS jslib;
Query OK, 0 rows affected (0.02 sec)
mysql> USE jslib;
Database changed
Using the two CREATE LIBRARY
statements shown here, we create two JavaScript libraries, each
exporting one function. To be callable as part of the library, the
stored program must be declared with the export
keyword.
mysql> CREATE LIBRARY IF NOT EXISTS jslib.lib1 LANGUAGE JAVASCRIPT
-> AS $$
$> export function f(n) {
$> return n
$> }
$> $$;
Query OK, 0 rows affected (0.02 sec)
mysql> CREATE LIBRARY IF NOT EXISTS jslib.lib2 LANGUAGE JAVASCRIPT
-> AS $$
$> export function g(n) {
$> return n * 2
$> }
$> $$;
Query OK, 0 rows affected (0.00 sec)
You can optionally declare one function within a given library as
export default
. In this case, the function must
be called by the importing routine as
.
libname
.default()
You can obtain information about JavaScript libraries by querying
two Information Schema tables,
LIBRARIES
and
ROUTINE_LIBRARIES
, provided by MLE.
The rows corresponding to the the libraries
jslib.lib1
and jslib.lib2
in
these two tables are shown by the following queries:
mysql> SELECT * FROM information_schema.LIBRARIES
-> WHERE LIBRARY_SCHEMA='jslib'\G
*************************** 1. row ***************************
LIBRARY_CATALOG: def
LIBRARY_SCHEMA: jslib
LIBRARY_NAME: lib1
LIBRARY_DEFINITION:
export function f(n) {
return n
}
LANGUAGE: JAVASCRIPT
CREATED: 2024-12-16 09:20:26
LAST_ALTERED: 2024-12-16 09:20:26
SQL_MODE: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,
NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
CREATOR: me@localhost
*************************** 2. row ***************************
LIBRARY_CATALOG: def
LIBRARY_SCHEMA: jslib
LIBRARY_NAME: lib2
LIBRARY_DEFINITION:
export function g(n) {
return n * 2
}
LANGUAGE: JAVASCRIPT
CREATED: 2024-12-16 09:20:26
LAST_ALTERED: 2024-12-16 09:20:26
SQL_MODE: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,
NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
CREATOR: me@localhost
2 rows in set (0.00 sec)
mysql> SELECT * FROM information_schema.ROUTINE_LIBRARIES
-> WHERE LIBRARY_SCHEMA='jslib'\G
*************************** 1. row ***************************
ROUTINE_CATALOG: def
ROUTINE_SCHEMA: jslib
ROUTINE_NAME: foo
ROUTINE_TYPE: FUNCTION
LIBRARY_CATALOG: def
LIBRARY_SCHEMA: jslib
LIBRARY_NAME: lib1
LIBRARY_VERSION: NULL
*************************** 2. row ***************************
ROUTINE_CATALOG: def
ROUTINE_SCHEMA: jslib
ROUTINE_NAME: foo
ROUTINE_TYPE: FUNCTION
LIBRARY_CATALOG: def
LIBRARY_SCHEMA: jslib
LIBRARY_NAME: lib2
LIBRARY_VERSION: NULL
2 rows in set (0.00 sec)
To create a JavaScript function that uses the two libraries,
include the USING
keyword together with a list
of libraries to be imported as part of CREATE
FUNCTION
, like this:
mysql> CREATE FUNCTION foo(n INTEGER) RETURNS INTEGER LANGUAGE JAVASCRIPT
-> USING (jslib.lib1 AS mylib, jslib.lib2 AS yourlib)
-> AS $$
$> return mylib.f(n) + yourlib.g(n)
$> $$;
Query OK, 0 rows affected (0.00 sec)
The alias (AS
keyword and clause) is generally
optional, but if specified, you must use this for the library name
when including functions from it in your own stored programs. A
library identifier—the name, or its alias if there is one,
exclusive of database name—must be unique within a given
JavaScript stored function. You can use AS
with
CREATE FUNCTION
to avoid name
collisions between libraries. For example, to include a library
named ourlib
in the current database along with
one having the same name but residing in the
other
database, you could use the statement
shown here:
CREATE FUNCTION myfunc(x INTEGER) RETURNS INTEGER LANGUAGE JAVASCRIPT
USING (ourlib, other.ourlib AS theirlib)
...
;
In the case just shown, there are two libraries having the same name, so it is necessary to use an alias for only one of them.
If one (or more) of the included libraries does not exist, or if
the user does not have the required privileges to access it, the
CREATE FUNCTION
statement referencing it is
rejected with an error.
The name of a library imported with USING
is
case-sensitive. References to it within the JavaScript stored
function are expected to match the library name as shown in the
USING
clause.
You can verify that the function was created by checking the
Information Schema ROUTINES
table,
with a query similar to that which is shown here:
mysql> SELECT
-> SPECIFIC_NAME, ROUTINE_NAME, ROUTINE_SCHEMA,
-> DATA_TYPE, ROUTINE_DEFINITION
-> FROM information_schema.ROUTINES
-> WHERE ROUTINE_NAME='foo'\G
*************************** 1. row ***************************
SPECIFIC_NAME: foo
ROUTINE_NAME: foo
ROUTINE_SCHEMA: jslib
DATA_TYPE: int
ROUTINE_DEFINITION:
return mylib.f(n) + otherlib.g(n)
1 row in set (0.00 sec)
We can invoke the function just created just as we would any other stored function.
mysql> SELECT foo(2), foo(3), foo(-10), foo(1.5), foo(1.2);
+--------+--------+----------+----------+----------+
| foo(2) | foo(3) | foo(-10) | foo(1.5) | foo(1.2) |
+--------+--------+----------+----------+----------+
| 6 | 9 | -30 | 6 | 3 |
+--------+--------+----------+----------+----------+
1 row in set (0.00 sec)
Because the input parameter is of type INTEGER
,
rounding as if using Math.round()
takes place
before the value is used in any calculations, 1.5 is evaluated as
2 + (2 * 2) = 6
, and 1.2 as 1 + (2 *
1) = 3
.
JavaScript syntax is checked at library creation time, as shown here:
mysql> CREATE LIBRARY IF NOT EXISTS jslib.lib3 LANGUAGE JAVASCRIPT
-> AS $$
$> export function f(n) {
$> return n $ 2
$> }
$> $$;
ERROR 6113 (HY000): JavaScript> SyntaxError: lib3:3:17 Expected ; but found $
return n $ 2
^
The CREATE LIBRARY
statement
executes successfully after correcting the typographical error, as
shown here:
mysql> CREATE LIBRARY IF NOT EXISTS jslib.lib3 LANGUAGE JAVASCRIPT
-> AS $$
$> export function h(n) {
$> return n - 2
$> }
$> $$;
Query OK, 0 rows affected (0.01 sec)
It is also possible to perform dynamic imports, which do not have
to be specified with a USING
clause; these are
supported but their use is discouraged, due to the fact that a
dynamic import returns a
Promise
,
which is not resolved until the synchronous code block finishes.
This means that a block that depends on a dynamically-imported
module cannot influence the return value of a stored function, or
an OUT
or
INOUT
parameter of a stored procedure.
To perform a dynamic import, use the global
import()
method instead, passing to it a reference to the library in the
form
/
(the leading slash character is required), similar to what is
shown here:
schema_name
/library_name
USE my_db;
CREATE LIBRARY my_lib LANGUAGE JAVASCRIPT
AS $$
export function foo(){return 42;};
export function thrower(){throw "MyError";};
$$;
CREATE FUNCTION my_func() RETURNS INT LANGUAGE JAVASCRIPT
AS $$
let result = 0
import("/my_db/my_lib").then((myModule) => {
let {foo} = myModule
result = foo(); // sets result to 42
})
// Return statement is executed before the Promise in the previous block
// is resolved, thus always returning 0, and not 42
return result
$$;
# returns 0
SELECT my_func();
CREATE FUNCTION my_func() RETURNS INT LANGUAGE JAVASCRIPT
AS $$
let result = 0
import("/my_db/my_lib").then((myModule) => {
let {thrower} = myModule
thrower() // throws an exception
})
// Return statement is executed before the Promise in the previous block
// is resolved, thus always returning 0...
return result
$$;
# ...but this throws an error due to unhandled rejection of the Promise
SELECT my_func();
It is possible to import libraries or portions of them into other
libraries, as shown in this example where function
foo()
is imported from library
mylib
into library theirlib
and used in a function bar()
defined in
theirlib
, which is then imported into stored
function myfunc()
which invokes
bar()
:
mysql> CREATE LIBRARY mylib LANGUAGE JAVASCRIPT
-> AS $$
$> export function foo(){return 42}
$> $$;
Query OK, 0 rows affected (0.04 sec)
mysql> CREATE LIBRARY theirlib LANGUAGE JAVASCRIPT
-> AS $$
$> import {foo} from "/db1/mylib"
$> export function bar(){return 2 * foo()}
$> $$;
Query OK, 0 rows affected (0.01 sec)
mysql> CREATE FUNCTION myfunc(x INTEGER) RETURNS INT
-> LANGUAGE JAVASCRIPT
-> NO SQL
-> USING (theirlib)
-> AS $$
$> let result = theirlib.bar()
$>
$> result += x
$>
$> return result
$> $$;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT myfunc(1), myfunc(10);
+-----------+------------+
| myfunc(1) | myfunc(10) |
+-----------+------------+
| 85 | 94 |
+-----------+------------+
1 row in set (0.00 sec)
Library functions can be invoked only within the library or stored
routine into which their containing library is imported. For
example, the following stored function
myfunc2()
imports theirlib
,
and theirlib
imports mylib
.
The CREATE FUNCTION
statement in this case
succeeds, but a direct attempt to invoke a function originating in
mylib
is rejected at runtime, as shown here:
mysql> CREATE FUNCTION myfunc2(x INTEGER) RETURNS INT
-> LANGUAGE JAVASCRIPT
-> NO SQL
-> USING (theirlib)
-> AS $$
$> return mylib.foo()
$> $$;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT myfunc2(1), myfunc2(10);
ERROR 6113 (HY000): JavaScript> ReferenceError: mylib is not defined
MLE JavaScript library code is executed only when invoked as part of a stored routine which includes the library. Library code is not executed by any of the following statements:
For example, these are valid CREATE LIBRARY
and
CREATE FUNCTION
statements, since the code is
not actually executed:
mysql> CREATE LIBRARY my_lib LANGUAGE JAVASCRIPT
-> AS $$
$> throw "MyError"
$> $$;
Query OK, 0 rows affected (0.02 sec)
mysql> CREATE FUNCTION my_func(x INTEGER)
-> RETURNS INTEGER LANGUAGE JAVASCRIPT NO SQL
-> USING(my_lib)
-> AS $$
$> return x * 10
$> $$;
Query OK, 0 rows affected (0.02 sec)
Invoking the function that imports the library actually invokes the library code, which causes an error, as shown here:
mysql> SELECT my_func(8);
ERROR 6113 (HY000): JavaScript> MyError