#How to connect your bot to a web database and how to create a random number + letters generator
4 messages · Page 1 of 1 (latest)
• What's your exact discord.js npm list discord.js and node node -v version?
• Post the full error stack trace, not just the top part!
• Show your code!
• Explain what exactly your issue is.
• Not a discord.js issue? Check out #useful-servers.
I'm sorry i know im really confusing and bad at explaining all i want really is to be sent to docs that could help me learn this or some video something that i can learn off of
``var con = mysql.createConnection({
host: "",
user: "",
password: "",
database: ""
});
con.connect(err =>{
if(err) throw err;
console.log("Connected to database");
});``