I am working on a project where I should post notification whenever an database event is fired.
I am using NODE for this. BUt I am not sure whether I'll be able to do it or not.
I came across this question On SO but It didn't help much.
I also saw NODE.js MySql Connectors
What my Real questions are:
1) Is there anything like reading MySql triggers in Node js. ? Can I push instant notification as soon as a row is entered in the desired table?
2) If Yes, How should I go about it?
3) If it is not possible and I have to check the DB changes manually after every few seconds, Why should I use Node.js instead of making asynchronous calls from browser after every few seconds using jQuery?
Any help would be appriciated...!