mysql-query-promise

1.0.1 • Public • Published

mysql-query-promise

mysql-query-js wrapper for promises

Installing

Add to you package.json file:

    "dependencies": {
       "mysql-query-promise": "*"
    }

Then run npm install...

Usage example

Add to your default.js config file:

    database: {
        'master': {
            host: 'localhost',
            user: 'username',
            password: 'password',
            port: '3306',
            database: 'database',
            connectionLimit: 10
        },
        'slave': {
            host: 'localhost',
            user: 'username',
            password: 'password',
            port: '3306',
            database: 'database',
            connectionLimit: 10
        }
    }

Then include and use:

    var query = require('mysql-query-promise'),
        qs = 'SELECT * FROM foo WHERE bar=?';
        
    query(qs, ['baz'], 'master')
        .then(function(rows){
            /* Do what you need with query results here */
        }, function(err){
            /* Errors handler */
        });

Package Sidebar

Install

npm i mysql-query-promise

Weekly Downloads

45

Version

1.0.1

License

ISC

Last publish

Collaborators

  • apelsyn