Help for this page

Select Code to Download


  1. or download this
    use DBI;
    my $dbh = DBI->connect(...);
    ...
        (?, ?, ?, ?, ?)
    };
    my $sth = $dbh->prepare($sql_insert);
    
  2. or download this
    $sth->execute(@school{qw{location name type address description}});
    
  3. or download this
    $sth->finish();
    $dbh->disconnect();