Help for this page

Select Code to Download


  1. or download this
    my $table_statement = "SELECT table_name FROM ${database}.information_
    +schema.tables";
    
  2. or download this
    my %tablenames = ();
    while ((@row) = $sth->fetchrow_array) {
      $tablenames{$row[0]}++;
    }