Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings; use strict;
    ...
    
    our $conn2 = DBI->connect($dbconnectionstring);
    die($DBI::errstr) unless $conn2;
    
  2. or download this
    use Text::CSV_XS;
    
    ...
    
    our $conn2 = DBI->connect($dsn, $user, $pass);
    die($DBI::errstr) unless $conn2;