Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect ("dbi:CSV:f_dir=/root", undef, undef, {
        f_ext      => ".csv",
        RaiseError => 1,
    }
    );
    
  2. or download this
    my $dbh = DBI->connect ("dbi:CSV:f_dir=root", undef, undef, {
        f_ext      => ".csv",
        RaiseError => 1,
    }
    );
    
  3. or download this
    my $dbh = DBI->connect ("dbi:CSV:", undef, undef, {
        f_ext      => ".csv",
    ...
        f_dir      => "/root",
    }
    );
    
  4. or download this
    my $dbh = DBI->connect ("dbi:CSV:", undef, undef, {
        f_ext      => ".csv",
    ...
        f_dir      => "root",
    }
    );