in reply to Oracle to Excel
The correct syntax for write() is:foreach my $stmt (@data) { $worksheet->write($row++, @data); # !! last; }
You are missing the $column argument, which in this case is probably 0. If $stmt is an array ref then you can write it in one go as follows:write($row, $column, $token, $format)
$worksheet->write($row++, 0, $stmt);
--
John.
|
|---|