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