I am using go-sql-driver/mysql driver for connecting to a MySQL database in Golang.
I wonder is there a way to listen for DML queries on the database such that the client gets notified/triggered when any such query occurs.
I am using the inbuilt database/sql
package for connection.
Similar: [1]