Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kbarbounakis/most-data-oracle

Most Web Framework Oracle Adapter
https://github.com/kbarbounakis/most-data-oracle

Last synced: 1 day ago
JSON representation

Most Web Framework Oracle Adapter

Awesome Lists containing this project

README

        

# most-data-oracle
Most Web Framework Oracle Adapter
##Install
$ npm install most-data-oracle
##Usage
Register Oracle adapter on app.json as follows:

"adapterTypes": [
...
{ "name":"Oracle Data Adapter", "invariantName": "oracle", "type":"most-data-oracle" }
...
],
adapters: [
...
{ "name":"development", "invariantName":"oracle", "default":true,
"options": {
"host":"localhost",
"port":1521,
"user":"user",
"password":"password",
"service":"orcl",
"schema":"PUBLIC"
}
}
...
]

If you are intended to use Oracle adapter as the default database adapter set the property "default" to true.

Note: Most Web Framework Oracle Adapter depends on [Oracle Database driver for Node.js](https://github.com/oracle/node-oracledb) maintained by Oracle Corp.
Before install it, read the node-oracledb [installation instructions] (https://github.com/oracle/node-oracledb/blob/master/INSTALL.md) provided by Oracle Corp.