Mydav 3.55 - Delphi 5
Mytable ART: InnoDB Cache Update = true
How can I refresh the records on other machines?
Thanks
refresh data
Using the cached updates mode and transactions are not connected.
Cached updates are especially useful for client applications working with remote database servers. Enabling cached updates brings up the following benefits:
- Fewer access counts to database and shorter session times.
- Minimized network traffic.
Transactions are used to commit or rollback many changes in database at a heat. Updates, insertions, and deletions that take place after a call of StartTransaction are held by the server until application calls Commit to save the changes, or Rollback to cancel them.
You can find more detailed information about this in the MyDAC help.
Cached updates are especially useful for client applications working with remote database servers. Enabling cached updates brings up the following benefits:
- Fewer access counts to database and shorter session times.
- Minimized network traffic.
Transactions are used to commit or rollback many changes in database at a heat. Updates, insertions, and deletions that take place after a call of StartTransaction are held by the server until application calls Commit to save the changes, or Rollback to cancel them.
You can find more detailed information about this in the MyDAC help.