Help for this page

Select Code to Download


  1. or download this
    [%
       USE d = DBI(database = "dbi:AnyData", user = "", password = "");
    ...
       END;
    %]
    
  2. or download this
    use DBI;
    my $dbh = DBI->connect('dbi:AnyData(RaiseError=>0):');
    ...
    while ( my $row = $sth->fetchrow_hashref ) {
        print $row->{name}, "\n";
    }