Nik has asked for the wisdom of the Perl Monks concerning the following question:
whats the appropriate syntax for getting column information for every table listed in my current database? i used the following but it didnt work out!@tables = $db->tables; foreach (@tables) { print font( {-size=>6, -color=>'Lime'}, "$_<br>" ); }
Can you help me on that? thanks!@columns = $db->column_info; foreach (@columns) { print font( {-size=>6, -color=>'Lime'}, "$_<br>" ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Column info request.
by stvn (Monsignor) on Feb 04, 2004 at 20:14 UTC | |
|
Re: Column info request.
by jeffa (Bishop) on Feb 04, 2004 at 20:32 UTC | |
by jdtoronto (Prior) on Feb 05, 2004 at 04:22 UTC | |
by exussum0 (Vicar) on Feb 05, 2004 at 08:32 UTC | |
|
Re: Column info request.
by blokhead (Monsignor) on Feb 04, 2004 at 20:43 UTC |