I am weighting a node.js application, the result I get from my mysql query is,
[ RowDataPacket { name: 'ubuntu' } ]
(Ubuntu is the only thing in the row)
What I would like to do is shorten my variable, "results" so that it equals ubuntu for example, or just every thing between the '', I am new to JS. I am using the standard way of querying the sql database, It is being done as so:
   var mysql      = require('mysql');
   var connection = mysql.createConnection({
   host     : 'localhost',
   user     : 'root', //just using root for my personal testing.
   password : 'root',
   database : 'Sonic'
   });
   connection.connect();
    var connect = connection.query( 'SELECT name FROM Sonic_url',      
       function(err,     fields, results, rows) {
    // if (results === input) {
    var sqldata = results.substring(1, 4);
    console.log(results);
    if (err) throw err;
   //  console.log('I belive we have found what you are after, is: ' +  input + ' ' + 'what you are after?');
   //}
    });
I would like to be able to do a basic IF with the variable input and a variable from the mysql query, so I can print to screen if the result was found or not.
 
    