I need the result to Store in session. Is that easly Possible?
This is My Route,
app.get('/employ',(req,res) =>{
var q="select * from employee"
connection.query(q,(err,result) => {
if (err) throw err;
console.log("fetched values successfully...");
})
console.log(result);
res.render("addemploy.hbs")
})
If yes, mention how to access stored values from session anytime.