most-data-oracle

MOST Web Framework Oracle Data Adapter


Keywords
data, db, oracle, orm, most, database
License
BSD-1-Clause
Install
npm install most-data-oracle@0.1.5

Documentation

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 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.