Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kbarbounakis/most-data-oracle
- Owner: kbarbounakis
- License: other
- Created: 2015-08-19T13:03:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-09T11:56:15.000Z (about 9 years ago)
- Last Synced: 2024-11-10T00:05:47.492Z (7 days ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.