Filters & Merge

This commit is contained in:
Ben PC
2022-03-30 14:28:07 +02:00
parent d01a141ab4
commit 8edc854877
3 changed files with 78 additions and 24 deletions

View File

@@ -12,8 +12,8 @@ con.query("SELECT * FROM users", function(err, result){
let con = mysql.createConnection({ // TODO: change to config file
host: "localhost",
user: "onlineshop",
password: "TestUser321", // TODO: DO NOT STORE PASSWORDS IN THE CODE
user: "root",
password: "", // TODO: DO NOT STORE PASSWORDS IN THE CODE
database: "onlineshop"
});