I am new to this MySQL concepts.i want to check the MySQL database periodically whether its working properly or not from java.Is there any simple way to check this.
Thanks In Advance.
|
|
You can start by connecting to your database via JDBC. If the connection succeeds, then you know that the database is up and running. If it doesn't succeed, the database may still be up of course - it could be something else like network connectivity, but still - you know that there's some problem you should check so this is a simple way to monitor. If you're looking for more elaborate testing (like @shakti-singh commented - it depends on what you mean by working properly), then you can create a synthetic transaction - write code that queries something in the same way that your application does and ensure that you get the expected results. (Google "synthetic transactions" for more information). |
|||
|