Struppi: ob table MYSQL Beispiel existiert

Beitrag lesen

Hab's geschafft !

Ob das die beste Lösung ist, ist die Frage.

$tabsth2 = $dbh->table_info();

zitat:

This method can be expensive, and can return a large amount of data. (For example, small Oracle installation returns over 2000 rows.) So it's a good idea to use the filters to limit the data as much as possible.

while ($table = $tabsth2->fetchrow_arrayref) {
$sth2 = $dbh->prepare("SELECT * FROM @$table[2]");
$sth2->execute();
$tisch =@$table[2];

if($tisch eq 'Bespiel_Tabelle'){

Das verstehe ich nicht ganz. Sieht zumindest nicht logisch aus. Was soll das prepare und execute bewirken?

Struppi.