interact with databse java

Solutions on MaxInterview for interact with databse java by the best coders in the world

showing results for - "interact with databse java"
Nate
19 Nov 2018
1const mysql = require('mysql');
2
3const con = mysql.createConnection({
4  
5  host: "localhost",
6  user: "yourusername",
7  password: "yourpassword"
8
9  });
10
11con.connect(function(err) {
12  if (err) throw err;
13  console.log("Connected!");
14});
similar questions
queries leading to this page
interact with databse java