Files
smarthome/mean-app/server/db.js
T
2017-04-11 11:46:23 +02:00

15 lines
319 B
JavaScript

var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'asdf1239',
database : 'smarthome',
timezone : 'utc',
multipleStatements: true
});
connection.connect(function(err) {
if (err) throw err;
});
module.exports = connection;