Help for this page

Select Code to Download


  1. or download this
    $dbhC->{csv_tables}->{outTable} = {
        file     => 'foo/bar.csv',
        sep_char => "\t",
        eol      => '\012',
    };
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    $dbhC->do("CREATE TABLE outTable AS IMPORT(?)",{},$select);
    
    __END__