blob: 3157ce3cf0f286ae4b1d8a035b0823605aed7ac0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
TO DO:
-----
READ ALL COMMENTS AND REPLACE VALUES ACCORDINGLY
*/
const mysql = require("mysql");
const bcrypt = require('bcrypt');
const dbCon = mysql.createConnection({
host: "cse-mysql-classes-01.cse.umn.edu",
user: "C4131S21U83", // replace with the database user provided to you
password: "6919", // replace with the database password provided to you
database: "C4131S21U83", // replace with the database user provided to you
port: 3306
});
console.log("Attempting database connection");
dbCon.connect(function (err) {
if (err) {
throw err;
}
console.log("Connected to database!");
const saltRounds = 10;
const myPlaintextPassword = 'tango'; // replace with password chosen by you OR retain the same value
const passwordHash = bcrypt.hashSync(myPlaintextPassword, saltRounds);
const rowToBeInserted = {
acc_name: 'charlie', // replace with acc_name chosen by you OR retain the same value
acc_login: 'charlie', // replace with acc_login chosen by you OR retain the same value
acc_password: passwordHash
};
console.log("Attempting to insert record into tbl_accounts");
dbCon.query('INSERT tbl_accounts SET ?', rowToBeInserted, function (err, result) {
if (err) {
throw err;
}
console.log("Table record inserted!");
});
dbCon.end();
});
|