This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
smart-tag/mysql.js

12 lines
231 B
JavaScript
Raw Normal View History

2021-03-12 07:45:52 +00:00
var mysql = require('mysql');
var con = mysql.createConnection({
host: "test-db.verdnatura.es",
user: "vicent",
password: "llopis.19263"
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected!");
});