Socket
Book a DemoInstallSign in
Socket

mysql-bluebird

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-bluebird

Bluebird wrapper for MySQL

0.0.3
latest
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

MySQL Bluebird

Bluebird wrapper for MySQL

Installation

You can install this module via npm:

npm install mysql-bluebird

Example Usage

// Require the module.
var MySQL = require('mysql-bluebird');
var Promise = require('bluebird');

// Pass your connection options to the constructor.
var db = new MySQL({
  "host": "127.0.0.1",
  "port": 3306,
  "database": "name",
  "user": "user",
  "password": "password"
});

Promise.resolve()
  .then(function () {
    // Call the start function which will connect to the database.
    return db.start();
  }).then(function () {
    // Perform a query to the database to get all the rows from the test table.
    return db.query('SELECT * FROM test');
  }).then(function (res) {
    // Console print the returned rows.
    console.log(res);
  });

Keywords

mysql

FAQs

Package last updated on 19 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.