Skip to content

Native support for server-side JavaScript in Oracle Database 23ai #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ query.values; //=> ["Blake", "Bob", "Joe"]

## Recipes

This package "just works" with [`pg`](https://www.npmjs.com/package/pg), [`mysql`](https://www.npmjs.com/package/mysql), [`sqlite`](https://www.npmjs.com/package/sqlite) and [`oracledb`](https://www.npmjs.com/package/node-oracledb).
This package "just works" with [`pg`](https://www.npmjs.com/package/pg), [`mysql`](https://www.npmjs.com/package/mysql), [`sqlite`](https://www.npmjs.com/package/sqlite). Support for Oracle Database is available for both client ([`oracledb`](https://www.npmjs.com/package/node-oracledb)) and server mode ([Multilingual Engine/JavaScript](https://docs.oracle.com/en/database/oracle/oracle-database/23/mlejs/index.html)), the latter since Oracle Database 23ai for Linux x86-64 ([API documentation](https://oracle-samples.github.io/mle-modules/docs/mle-js-oracledb/23ai/classes/api.IConnection.html#execute)).
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WDYT about making this a list, e.g.

This package "just works" with:

* ...

This should be easier on the eyes to read since OracleDB is now most of the paragraph and I'd like to keep it easy to skim for other DB users.


### [MSSQL](https://www.npmjs.com/package/mssql)

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"mysql",
"sqlite",
"oracledb",
"Multilingual Engine/JavaScript"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer not to add this as a tag 🙏

"oracle"
],
"homepage": "https://github.com/blakeembrey/sql-template-tag",
Expand Down