In a C# Winforms app (NO Datagrids :-)), how would one write a query to check if a MySQL Database has been updated? I want to say something like: “Have you updated anything since [date the client latest got updates]?”
Thanks 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use a version number scheme instead. Comparing a simple number might be faster than comparing dates. But if you know that your application is the only one that update the database, then you can build a notification service into your data access layer that would asynchronously notify subscribers on updates.