Is it possible to monitor a mysql table for changes within a c# application? I basically want an event to be raised when data is inserted into the table. The only thing I
Perhaps add Insert, Update, Delete triggers to the table to log row in a new table with two columns..
Then you access this table and it tells you the specifically which rows were inserted, updated, deleted.