Hi All,
In my Perl program I am using Rose::DB for the interaction with Oracle database for my project.
Here in database table I have set of records with the Boolean field which can be ‘T’ or ‘F’.
My Perl program will take the set of records from the table and do some actions on that and after that it will set the flag field as ‘T’,
so the same records should not get processed again. After that I am executing the commit.
But the issue is that here even the commit returns the return value 1, its not reflecting on Database Table
and the Perl program will process the same already processed records again and again.
Please anyone help me to solve this issue.
my $db = RDBO->init_db;
select records from queue where the flag = ‘F’;
process ($rec);
update queue set flag = ‘T’ where records =$ rec;
$db->commit;
Thanks
Shreedhar Naik
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.