以下的文章主要介紹的是從MySQL導出 XLS 數據庫工具的介紹,XLS 數據庫工具之所以能在很短的時間內被人們廣泛的應用,原因也是因為它獨特的功能。以下的文章主要介紹的是MySQL導出 XLS 數據庫工具的實際應用。
- warn "write to: $ARGV[0]/n";
生成GB2312編碼系統
- my $map = Unicode::Map->new("gb2312");
產生報表
my $report = Spreadsheet::WriteExcel::Big->new("$ARGV[0]") || die "不能生成報表文件:$!";
創建報表的工作表
- my $sheet = $report->add_worksheet('data_report');
創建格式
- my $title_style = $report->add_format(); $title_style->set_size(11); $title_style->set_bold(); $title_style->set_align('center');
初始化數據指針
- my $sheet_col = 0;
從MySQL中導出XLS數據庫工具中創建表格
- for (my $i=0;$i<=$cols_name ;$i++) {
- $sheet->set_column($cols[$i], length($cols_name[$i])+4);
- $sheet->write_unicode($sheet_col,$i,$map->to_unicode($cols_name[$i]),$title_style);
- }
$sheet->freeze_panes(1, 0);凍結行
- while (my @row = $sth->fetchrow_array) {
- $sheet_col++;
- for (my $i=0;$i<=$cols_name ;$i++) {
- next if ($row[$i] eq '');
- $sheet->write_unicode($sheet_col,$i,$map->to_unicode($row[$i]));
- }
- }
- warn "all done!!!/n";
結束
- END {
- $report->close() if ($report);
- $dbh->disconnect();
- warn "write to: $ARGV[0]/n";
生成GB2312編碼系統
- my $map = Unicode::Map->new("gb2312");
產生報表
my $report = Spreadsheet::WriteExcel::Big->new("$ARGV[0]") || die "不能生成報表文件:$!";
創建報表的工作表
- my $sheet = $report->add_worksheet('data_report');
創建格式
- my $title_style = $report->add_format(); $title_style->set_size(11); $title_style->set_bold(); $title_style->set_align('center');
初始化數據指針
- my $sheet_col = 0;
創建表格
- for (my $i=0;$i<=$cols_name ;$i++) {
- $sheet->set_column($cols[$i], length($cols_name[$i])+4);
- $sheet->write_unicode($sheet_col,$i,$map->to_unicode($cols_name[$i]),$title_style);
- }
$sheet->freeze_panes(1, 0);凍結行
- while (my @row = $sth->fetchrow_array) {
- $sheet_col++;
- for (my $i=0;$i<=$cols_name ;$i++) {
- next if ($row[$i] eq '');
- $sheet->write_unicode($sheet_col,$i,$map->to_unicode($row[$i]));
- }
- }
- warn "all done!!!/n";
結束
- END {
- $report->close() if ($report);
- $dbh->disconnect();
- }
以上的相關內容就是對從MySQL導出XLS數據庫工具的介紹,望你能有所收獲。