You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description for this feature.
Now that we have supported javascript language function in shaonnonbase. But, it can not run SQL statement. For example,
DELIMITER |
CREATE FUNCTION TestConn() RETURNS INT
LANGUAGE JAVASCRIPT AS
BEGIN
const mysql = require('mysql');
const connection = executeSQL("select * from table1 where col1='a'");
return 0;
END|
We want to execute a SQL statement in javascript function.
The text was updated successfully, but these errors were encountered:
Summary
Description for this feature.
Now that we have supported javascript language function in shaonnonbase. But, it can not run SQL statement. For example,
We want to execute a SQL statement in javascript function.
The text was updated successfully, but these errors were encountered: