Hi,
I'm wondering whether it is possible or not with NHibernate (or its tool) synchronize data between MySQL DB server clients running on different PCs.
I mean the following: when I insert/update/delete some data to/from MySQL DB server from client 'A' some notification/event (from NHibernate) should tell all other clients ('B','C','D'... etc) that some data has been inserted/updated/deleted in DB (that will let all other clients refresh their data/views in accordance with DB).
As far as I know MySQL DB doesn't support queues which should normally help in such situation...
Of course there is a way named 'polling' but may be there are some better solution already realized in NHibernate?
I'm looking for a solution for .NET platform that uses MySQL DB.
Thanks in advance
|