You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be better if you put database query in a seprate file
constonLoad=(request,response)=>{//get data from the databasedbConnection.query('SELECT * FROM tododb',(err,result)=>{if(err){console.log("Error")console.log(err);}else{console.log(result);response.writeHead(200,{"content-type":"application/json"})response.end(JSON.stringify(result.rows));}});
The text was updated successfully, but these errors were encountered:
It would be better if you put database query in a seprate file
The text was updated successfully, but these errors were encountered: