Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect(
       "DBI:CSV:f_dir=/export/home/devtools;csv_eol=\n;csv_sep_char=!;",
       {RaiseError=>1},
    );
    
  2. or download this
    $sth->execute() or die "Cannot execute: " . $sth->errstr();
    
  3. or download this
    $sth->execute();
    
  4. or download this
    use strict; # please ;)
    use DBI;
    ...
       file      => $file,
       col_names => $cols,
    };