Hi everyone
I have windows form application connected to mysql database. To menage this base I use mysql.net connector.
After I make some changes in datatable in my app, I use rowChanged handler to store changes in mysql.
Here is code I use in handler:
cmdBuilder = New MySqlCommandBuilder(dataAdapter)
dataAdapter.Update(datatable)
AND it works fine till there is no changes in mysql from other access way.
QUESTION IS:
How update changes from database to datatable AND update changes from datatable to database, without any stack, making Update command work?
Please help
Regards