Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
mysql-router
Advanced tools
This is a Database Router. This allows for easy access across all Plugins/Files within a Bot or Framework without wasting memory.
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.
$ npm install mysql-router
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:
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.
});
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'))
}
});
If any Issues Please Submit them on the Github!
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)});
})
FAQs
This is a Database Router. This allows for easy access across all Plugins/Files within a Bot or Framework without wasting memory.
We found that mysql-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.