I have an employee management
application. I am using a MySQL database.
In my application, I have functionality like add /edit/delete /view
.
Whenever I run any functionality, one query is fired in the database. Like in add employee, it will fire the insert
query.
So I want to do something on my database, so that I see how many queries have been fired till date.
I don't want to do any changes on my Java code.