Help for this page

Select Code to Download


  1. or download this
    @tables = $db->tables;
    
    foreach (@tables) {
       print font( {-size=>6, -color=>'Lime'}, "$_<br>" );
    }
    
  2. or download this
    @columns = $db->column_info;
    
    foreach (@columns) {
       print font( {-size=>6, -color=>'Lime'}, "$_<br>" );
    }