Help for this page

Select Code to Download


  1. or download this
    my $sql = $dbh->prepare ("sp_columns $_") || die;;
    
  2. or download this
    my $sql = $dbh->prepare ("SHOW COLUMNS FROM $_") || die;
    
  3. or download this
        my @tables = $dbh->ListTables;
    
    ...
    
        }
    
  4. or download this
        my $sql = $dbh->prepare ("sp_help") || die;;
        my $sth = $sql->execute or die "no ".$DBI::errstr;
    ...
            }
            print "</TR>\n";
    
  5. or download this
                if (! defined $$result_ref{$_})
                {
    ...
    
                print "<TD>",checkbox(-name=>"view",-checked=>"", -value=>
    +"$$result_ref{$_}"),"</TD>";
                print "<TD>$$result_ref{$_}</TD>";