-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx-dbi-to-excel
executable file
·58 lines (43 loc) · 1.1 KB
/
x-dbi-to-excel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env perl
use strict;
use warnings;
use DBI;
use Excel::Writer::XLSX;
my ($file, $dsn, $user, $pass, $query, @params) = @ARGV;
if (!$file || !$dsn || !$user || length($pass) || !$query) {
die "Usage: x-dbi-to-excel FILENAME DSN USER PASS SQL [bind params]\n";
}
map { $_ = undef if $_ && $_ eq 'NULL' } @params;
if (!$query) {
my $in_query = 1;
while (<STDIN>) {
chomp($_);
if ($in_query) {
if (!$_) { $in_query = 0; }
else { $query .= $_; }
next;
}
push @params, $_;
}
}
my $dbh = DBI->connect($dsn, $user, $pass, { RaiseError => 1 }) || die $DBI::errstr;
my $stm = $dbh->prepare($query);
$stm->execute(@params);
my ($wrk, $sheet) = create_excel_file($file);
my $col = 0;
$sheet->write(0, $col++, $_) for @{ $stm->{NAME_uc} };
my $row = 1;
while (my @row = $stm->fetchrow_array) {
$col = 0;
$sheet->write($row, $col++, $_) for @row;
$row++;
}
$stm->finish;
$dbh->disconnect;
$wrk->close;
sub create_excel_file {
my ($filename) = @_;
my $wrk = Excel::Writer::XLSX->new($filename);
my $sheet = $wrk->add_worksheet();
return ($wrk, $sheet);
}