Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect(
       qw(DBI:Oracle: user pass),
    ...
    });
     
    $sth->execute($employee{$_},.,....) for keys %employee;
    
  2. or download this
    my @field = qw(
       dn cn surname given_name initials
    ...
       . join(',', map '?', @field) 
       . ')'
    ;