Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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
amt.

perlcheat

In reply to Re^2: Spreadsheet::WriteExcel with CGI by amt
in thread Spreadsheet::WriteExcel with CGI by amt

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-24 17:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found