Skip to content

bimedia-fr/architect-oracle-pool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

architect-oracle-pool build status

Expose a Oracle connection pool as architect plugin. Automaticaly returns connection to the pool after query.

Installation

npm install --save architect-oracle-pool

Config Format

module.exports = [{
    packagePath: "architect-oracle-pool",
    pools: {
        poolName: {
            user: 'scott',
            password: 'tiger',
            connectString: 'backend.local/X3PV7',
            poolMax: 10
        }
    }
}];
  • pools : Defines the oracle pools configs
  • pools.poolName : Defines a oracle pool config to connect a particular database service

Usage

Boot Architect :

var path = require('path');
var architect = require("architect");

var configPath = path.join(__dirname, "config.js");
var config = architect.loadConfig(configPath);

architect.createApp(config, function (err, app) {
    if (err) {
        throw err;
    }
    console.log("app ready");
});

Configure Architect with config.js :

module.exports = [{
    packagePath: "architect-oracle-pool",
    pools: {
        poolName: {
            user: 'scott',
            password: 'tiger',
            connectString: 'backend.local/PV7',
            poolMax: 10
        }
    }
}, './routes'];

Consume oradb plugin in your ./routes/package.json :

{
  "name": "routes",
  "version": "0.0.1",
  "main": "index.js",
  "private": true,

  "plugin": {
    "consumes": ["oradb"]
  }
}

Eventually use Oracle connection in your routes ./routes/index.js :

module.exports = function setup(options, imports, register) {
    var rest = imports.rest;
    var db = imports.oradb;

    // register routes 
    rest.get('/hello/:name', function (req, res, next) {
        db.query('SELECT * FROM Users WHERE id=$1', [req.params.name], function(err, res){
            res.write("{'message':'hello," + res.rows[0].name + "'}");
            res.end();
        });
    });
    
    register();
};

Multiple pool configuration

This module supports multiple pools.

Here is how to define 2 different pools :

module.exports = [{
    packagePath: "architect-oracle-pool",
    pools: {
        first: {
            user: 'scott',
            password: 'tiger',
            connectString: 'backend.local/PV7',
            poolMax: 10
        },
        second : {
            user: 'scott',
            password: 'tiger',
            connectString: 'backend2.local/PV7',
            poolMax: 10
        }
    }
}];

This will create 2 properties (first and second) in the db object.

module.exports = function setup(options, imports, register) {
    var db = imports.oradb;
    db.first.connection(function (err, client) {
      client.query(/*...*/);
    });    
    register();
};

Configuration

  • pools: object with individuals pool config object for pool names
  • poolsDrainTime: see drainTime options. Default 10 s. https://node-oracledb.readthedocs.io/en/latest/api_manual/pool.html#pool.close
  • pools.poolName: pool config object for an individual pool
  • pools.poolName.connectString : the oracle database oracle net services connection string
  • pools.poolName.user : username to login,
  • pools.poolName.password : password to login

See Oracle createPool

API

The pool object (oradb) has the following methods :

connection

Retreive a connection from the pool. The method takes a callback as parameter. Once the connection is avaliable the callback is called with an :

  • err object if an error occured or null;
  • client the Oracle connection object;
  • done, the close method.

query

The query method let you directly query the database without worrying about the database connection. Behind the scene the method retreive a connection from the pool and close it afterward.

  • string text: the query text;
  • optional array parameters: the query parameters;
  • optional function callback : the function called when data is ready.

Once the data is ready the callback is fired with an :

  • err object if an error occured or null;
  • rows the result set.
module.exports = function setup(options, imports, register) {
    var db = imports.oradb;
    
    db.query('SELECT * from USERS', function (err, res) {
        res.rows.forEach(console.log);
    });
    //...
};

queryStream

The queryStream method let you directly query the database without worrying about the database connection. This method passes a stream to the callback instead of a resultset.

  • string text: the query text;
  • optional array parameters: the query parameters;
  • optional function callback : the function called when stream is ready.
  • returns: ReadableStream

Once the stream is ready the callback is fired with an :

  • err object if an error occured or null;
  • stream the result stream.
var JSONSteam = require('JSONStream');

module.exports = function setup(options, imports, register) {
    var db = imports.oradb;
    db.queryStream('SELECT * from USERS')
        .pipe(JSONSteam.stringify())
        .pipe(process.stdout);
    //...
};

About

nodejs architect oracle connection pool.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors