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