Quick edit - I am a complete beginner in web development, so I realize the solution might be stupidly obvious.
I'm attempting to insert a data set into a MySQL db through nodejs/expressjs/mysql.
I have a successful connection to the db and can query from it without issues.
Here is my post code:
app.post('/pyme', function(req,res){
console.log("Data being POSTED to db...");
var post = req.body;
console.log(post);
var sql_insert_pyme = 'INSERT INTO pyme(NombreComercio,NumeroTelefono) VALUES =?';
sql.query(sql_insert_pyme,post,function(err){
if(err) throw err;
});
});
The POST data I am getting looks as follows:
{ NombreComercio: 'Sebastian Avila',
NumeroTelefono: '71021714' }
I need a method to break that post into a simple:
"'Sebastian Avila', '71021714'"
Basically I want to end with:
post = "'Sebastian Avila', '71021714'"