Letzte Aktualizierung einer Datenbank

Letzte Aktualizierung einer Datenbank

am 10.05.2006 21:05:40 von bettina

Gibt es irgendeine Möglichkeit in einem PHP Programm nach dem Datum
der letzten Aktualizierung zum Fragen? Irgendeine Funktion die man im
Programm hinzufügen kann?

Danke im Voraus.
Bettina

Re: Letzte Aktualizierung einer Datenbank

am 10.05.2006 21:15:15 von Andreas Kretschmer

Andreas
--
q: why do so many people take an instant dislike to mysql?
a: it saves time (oicu in #postgresql)
Explaining the concept of referential integrity to a mysql user is like
explaining condoms to a catholic (Shadda in #postgresql)

Re: Letzte Aktualizierung einer Datenbank

am 10.05.2006 21:16:34 von bettina

sorry, ich habe vergessen zu sagen dass es um eine MySql datenbank
geht. Das wäre nicht Off-topic, oder?

Re: Letzte Aktualizierung einer Datenbank

am 10.05.2006 22:09:20 von bettina

Wieso zeigt mir dieser Code das aktuelle Datum anstatt das Datum der
letzte Aktualizierung der Datenbank?

$result=mysql_query("SHOW TABLE STATUS FROM myDb LIKE 'my_table'");
$updated = strtotime($result["Update_time"]);
$last = date("d.m.Y - H:i", $updated);
echo "$last";

Danke im Voraus.
Bettina

Re: Letzte Aktualizierung einer Datenbank

am 11.05.2006 09:48:12 von Hartmut Holzgraefe

bettina@coaster.ch wrote:
> Wieso zeigt mir dieser Code das aktuelle Datum anstatt das Datum der
> letzte Aktualizierung der Datenbank?
>=20
> $result=3Dmysql_query("SHOW TABLE STATUS FROM myDb LIKE 'my_table'");
$row =3D mysql_fetch_assoc($result);
> $updated =3D strtotime($result["Update_time"]);
^^^^ hier "row" statt "result"
> $last =3D date("d.m.Y - H:i", $updated);
> echo "$last";=20

aber das ist hier tatsächlich offtopic deshalb followup to

de.comp.lang.php.datenbanken


--=20
Hartmut Holzgraefe, Senior Support Engineer .
MySQL AB, www.mysql.com

http://www.mysql.com/support/