i'm getting an error for $! as "Resource temporarily Unavailable".
I'm trying to write to a file using Spreadsheet::WriteExcel's write().
The $worksheet object is defined at the top of the file, but when I
hit the below while loop, it won't write() and puts RTU in the $!
variable.
I don't think it's a scoping issue because the $worksheet object is
defined well before the while loop. My query for the information that
needs to go into the doesn't choke, so I'm not writing with
uninitialized variables. Would appreciate your opinion.
# At top of file
my $workbook = Spreadsheet::WriteExcel->new($target);
my $worksheet = $workbook->add_worksheet("Ventus_Networks_Invoice");
my $row = 0;
...
# This is the header row, that prints
if( $qrv > 0 ) {
my $mid_header =
$workbook->add_format(%oUpper,%iLeft,%iRight,%greybg,%fBold,%iLower);
my $mid_theader=
$workbook->add_format(%oUpper,%iLeft,%iRight,%greybg,%fBold,%iLower,%f
+Twrap);
$worksheet->write($row,0,'Site
Name',$workbook->add_format(%oUpper,%oLeft,%iLower,%iRight,%greybg,%fB
+old));
...
# After headers are printed, print data
while(my @i = $sth_site->fetchrow_array() ){
$worksheet->write($row,0,$i[1],
$workbook->add_format(%oLeft,%iRight,%iLower)); # Location ID
# This is where $! is set to "Resource Temporarily Unavailable
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.