"Jason Frisvold" <[EMAIL PROTECTED]> wrote:
> Is there any way to query a mySQL database for the last time it was
updated?
> I need this ability to trigger a "restart" in some other applications that
> create config files and such for MRTG...
Create a field with type DATETIME and update it when a
select _timestamp from mytable order by _timestamp desc limit 1;
Jason Frisvold wrote:
>
> Is there any way to query a mySQL database for the last time it was updated?
> I need this ability to trigger a "restart" in some other applications that
> create config files and such for MRTG...
>
> T