While I do lack knowledge with Oracle and obviously your system/implementation - I don't get it why don't you just do something like:
sub get_all_data{
return $sth2->fetchall_arrayref();
}
$p = Project->new_project($id);
$cursor = $p->get_all_data();
$| = 1; # to turn on autoflush (turn off print/output cashing)
foreach my $row (@$cursor){
print OUTPUT do{
local $" = qq{\t};
qq{$row->[1]\$\$\$\$\n};
} if defined $row->[1];
}
The part inside do{} is something I see for the first time, so I'm not sure if you are trying to output a TAB separated file? In particular I'm not sure what does "qq{$row->[1]\$\$\$\$\n};" do?
Also speaking in general - mixing OOP (Project.pm ...etc) and non-OOP (global $sth2 value) is usually not a good thing. IMHO you should keep consistency - pick one and stick with it.
Have you tried freelancing/outsourcing? Check out
Scriptlance - I work there since 2003. For more info about Scriptlance and freelancing in general check out
my home node.
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.