Open
Description
I checked mysql-node connection options but I can't figure out which one will allow me to connect to a remote legacy MySQL database via a proxy?
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'example.org',
user : 'bob',
password : 'secret',
...
});
I'm missing an option like: proxy : randomIPtoStaticIP.pro.xy
Any pointers would be greatly appreciated.