fixed typo in mariadb.js sample

This commit is contained in:
Sameer Naik
2017-01-16 23:39:34 +05:30
parent fde4b16429
commit 6b954baaf8

View File

@@ -14,6 +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.query('SHOW TABLES;');
connection.end();
});