We are creating a web service in Azure service using node.js to retrieve data from SQL db. We are using ClearDB to do the same.
While retriving the data its not comm
You don't need JSON.stringify() actually. results is already your javascript object, which represents array of json objects. Just use
JSON.stringify()
results
console.log(results[0].projectname);