SQL injection is possible despite using mysql.escape: ``` var object = { 'a` = 2; INSERT INTO test_inject SET `a': 1 }; conn.query('INSERT INTO test_inject SET ?', object, function (err, results) { }); ``` SqlString.objectToValues is the problem, it doesn't properly escape the object keys.