Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
$db = Mysql->connect($host, $database, $user, $password); $db->selectdb($database); @tables = $db->listtables; foreach $table (@tables) { print $table."\n<BR>"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Database Table Names
by Zaxo (Archbishop) on Nov 07, 2003 at 21:04 UTC | |
|
Re: Database Table Names
by jZed (Prior) on Nov 07, 2003 at 20:58 UTC | |
|
Re: Database Table Names
by bilfurd (Hermit) on Nov 07, 2003 at 22:10 UTC | |
by Anonymous Monk on Nov 08, 2003 at 01:20 UTC | |
|
Re: Database Table Names
by EdwardG (Vicar) on Nov 08, 2003 at 16:09 UTC | |
by tilly (Archbishop) on Nov 08, 2003 at 16:59 UTC | |
|
Re: Database Table Names
by hmerrill (Friar) on Nov 07, 2003 at 21:36 UTC |