2.1.2 • Published 6 years ago

sails-informix2 v2.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Sails-Informix Adapter

IBM Informix adapter for the Sails framework and Waterline ORM. Allows you to use Informix via your models to store and retrieve data. Also provides a query() method for a direct interface to execute raw SQL commands.

Installation

Sails-Informix uses ifxnjs driver to interact with the db, so install it first.

Then, install this adapter via NPM:

$ npm install sails-informix

Sails Configuration

Add the Informix config to the config/adapters.js file. Basic options:

module.exports.adapters = {
  default: 'Informix',

  Informix: {
    adapter: 'sails-informix',
    host: 'onecloud',
    port: 9089,
    user: 'pawanpawar',
    password: 'password',
    database: 'informix_test_db',
    server: "onecloud",
    debug: true
  }
};
2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.9

6 years ago

2.0.8

6 years ago

2.0.7

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago