n0pe Posted September 21, 2020 Posted September 21, 2020 Hey Guys, i try to connect my gamemode with database. But nothing happen. OS: Debian 10 I installed nodejs, npm and mysql. var mysql = require("mysql"); var connection = mysql.createConnection( { host: "", user: "", password: "", database: "" }) connection.connect(function(e) { if (e) console.log("Verbindung konnte nicht hergestellt werden!. Grund: " + e); else console.log("Verbindung zur Datenbank hergestellt!"); }) Console: https://prnt.sc/ul9al7
n0pe Posted September 21, 2020 Author Posted September 21, 2020 npm install mysql2 var mysql = require("mysql2"); solved my problem 1
Recommended Posts