Help for this page

Select Code to Download


  1. or download this
      my $dbh = DBI->connect("DBI:mysql:database=proyecto;host=localhost",
                             "root", "xyz123",
    ...
       while ((my @row) = $sth->fetchrow_array()) {
       print "@row->[0]\n";
       }
    
  2. or download this
    my $dbh = DBI->connect("DBI:mysql:database=proyecto;host=localhost",
                             "root", "xyz123",
    ...
    
    }