adds example query to `mariadb.js` sample

This commit is contained in:
Sameer Naik 2017-01-16 23:24:54 +05:30
parent ad4f620c98
commit 7c2ec05a34
1 changed files with 1 additions and 0 deletions

View File

@ -14,5 +14,6 @@ var connection = mysql.createConnection(url);
connection.connect(function(err) {
assert.equal(null, err);
console.log("Connected correctly to MySQL server");
connectiom.query('SHOW TABLES;');
connection.end();
});