- or download this
my $generator = <<'END_GENERATOR';
...
END_GENERATOR
eval $generator;
- or download this
use DBI;
my ($connect_string, $table, @columns) = @_? @_: @ARGV;
...
my @values = split /\t/;
$sth->execute(@values);
}
- or download this
my $root;
BEGIN {
use FindBin;
($root) = $FindBin::Bin =~ m{ (.* racine) [\\/] }imsx;
}
use lib "$root/Jobs/Perl/lib";