error handling broke things
This commit is contained in:
parent
02ce211b3f
commit
dae4288d2e
20
functions.js
20
functions.js
@ -27,18 +27,14 @@ const dotCommandFiles = fs.readdirSync('./dot-commands/').filter(file => file.en
|
|||||||
|
|
||||||
// MySQL database connection
|
// MySQL database connection
|
||||||
const mysql = require('mysql');
|
const mysql = require('mysql');
|
||||||
try {
|
const db = new mysql.createPool({
|
||||||
const db = new mysql.createPool({
|
connectionLimit: 10,
|
||||||
connectionLimit: 10,
|
host: dbHost,
|
||||||
host: dbHost,
|
user: dbUser,
|
||||||
user: dbUser,
|
password: dbPass,
|
||||||
password: dbPass,
|
database: dbName,
|
||||||
database: dbName,
|
port: dbPort,
|
||||||
port: dbPort,
|
});
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.error(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
const functions = {
|
const functions = {
|
||||||
// Functions for managing and creating Collections
|
// Functions for managing and creating Collections
|
||||||
|
Loading…
Reference in New Issue
Block a user