In the footer of my page, I would like to add something like "last updated the xx/xx/200x"; with this date being the last time a certain mySQL table has been updated. What is the best way to do that ? Is there a function to retrieve the date ? Should I make an access to the database everytime my footer is displayed ?
|
In later versions of MySQL you can use the
This does of course mean opening a connection to the database. An alternative option would be to "touch" a particular file whenever the MySQL table is updated: On database updates:
or alternatively
On page display:
|
|||||||||||||||||
|
|
I don't have information_schema database, using mysql version 4.1.16, so in this case you can query this:
It will return these columns: | Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment | As you can see there is a column called: "Update_time" that shows you the last update time for that table. Hope this will help someone when looking for a solution :) |
||||
|
This is what I did, I hope it helps.
|
|||||||||
|
|
I would create a trigger that catches all updates/inserts/deletes and write timestamp in custom table, something like tablename | timestamp Just because I don't like the idea to read internal system tables of db server directly |
|||
|
|
|
As a side note on Alnitak solution, on Windows there is apparently a bug (not really a bug, for the full story try Google), and the date is not correct. To make it work properly you can FLUSH TABLES before executing the UPDATE_TIME query. |
|||
|
|
For a list of recent table changes use this:
|
|||
|
|
|
Just grab the file date modified from file system. In my language that is:
Output:
|
|||||||
|
|
Cache the query in a global variable when it is not available. Create a webpage to force the cache to be reloaded when you update it. Add a call to the reloading page into your deployment scripts. |
|||
|