Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mysql-router

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-router

This is a Database Router. This allows for easy access across all Plugins/Files within a Bot or Framework without wasting memory.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

mysql-router

Build Status dependencies dev dependencies

Downloads Downloads npm version License

Code Climate Discord Chat PayPal

Mysql is a trademark or registered trademark of Oracle Corporation in the U.S. and/or other countries. "mysql-router" is not operated by, sponsored by, or affiliated with Oracle Corporation in any way.

Install

$ npm install mysql-router

Information

Documentation on Object Class Structure & Functions can be found at the Official Github Pages

Tutorials, Guides, and More can be Found at the Official Github Wiki

If any information is Lacking please Post a Question in the Github Issues Section.

Example Code:

Example Project:

Usage of Mysql Router

Configure

Config Options
Without SSL
var mysql = require('mysql-router');
mysql.StartPool({
  connectionLimit: 100,
  host: "127.0.0.1",
  post: 3306,
  user: "test",
  password: "test",
  database: "test",
  charset: "utf8mb4", // Note: This is very Specific to Discord. Just saying.
});
With SSL
var mysql = require('mysql-router');
var fs = require('fs');
var path = require('path');
mysql.StartPool({
  connectionLimit: 100,
  host: "127.0.0.1",
  post: 3306,
  user: "test",
  password: "test",
  database: "test",
  charset: "utf8mb4", // Note: This is very Specific to Discord. Just saying.
  ssl: {
    ca: fs.readFileSync(path.join(__dirname, 'ssl', 'server-ca.pem')),
    key: fs.readFileSync(path.join(__dirname, 'ssl', 'client-key.pem')),
    cert: fs.readFileSync(path.join(__dirname, 'ssl', 'client-cert.pem'))
  }
});

Issue

If any Issues Please Submit them on the Github!

Example

/index.js

var mysql = require('mysql-router');
var util = require('util');
mysql.StartPool({
  connectionLimit: 100,
  host: "127.0.0.1",
  post: 3306,
  user: "test",
  password: "test",
  database: "test",
  charset: "utf8mb4", // Note: This is very Specific to Discord. Just saying.
});

mysql.Query(`CREATE TABLE Persons (
    PersonID int,
    LastName varchar(255),
    FirstName varchar(255),
    Address varchar(255),
    City varchar(255)
);`, []).then((d) => {
  console.log(`Data from Query: ${${util.inspect(d, false, null)}}`);
}).catch((e) => {
  console.log(${util.inspect(e, false, null)});
})

Keywords

FAQs

Package last updated on 29 May 2019

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc