justin423 has asked for the wisdom of the Perl Monks concerning the following question:
my $query = $dbh->prepare('SHOW TABLES'); if (defined($query)) { $query->execute(); my @row; while (@row = $query->fetchrow_array()) { $sql = qq|delete from ?|; $sth = $dbh->prepare($sql) or die "Cannot prepare: " . $db +h->errstr(); $sth->execute($row[0]) or die "Cannot execute: " . $sth->e +rrstr(); } } $query->finish();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Deleting all from all tables in MYSQL
by fishmonger (Chaplain) on Sep 19, 2012 at 17:02 UTC | |
|
Re: Deleting all from all tables in MYSQL
by herveus (Prior) on Sep 19, 2012 at 17:00 UTC | |
by justin423 (Scribe) on Sep 19, 2012 at 17:12 UTC | |
|
Re: Deleting all from all tables in MYSQL
by Anonymous Monk on Sep 19, 2012 at 17:24 UTC | |
by justin423 (Scribe) on Sep 19, 2012 at 19:24 UTC | |
by Tux (Canon) on Sep 20, 2012 at 06:55 UTC | |
|
Re: Deleting all from all tables in MYSQL
by irirgem (Novice) on Sep 19, 2012 at 21:49 UTC |