Hi, I am relatively new to perl and now I am struggling with a very nasty and persistant problem, which already took me more than a day without any progress.
No experienced Perl programmers in sight......
My problem:
Given this piece of code:
my $recref = $dbh->
selectall_hashref("SELECT * FROM DSA_RECORD
WHERE file_name = '$file_name'", 'RECORD_NAME');
die unless $recref;
and the following content of $recref:
.-> HASH(0x110916be8)
'DATA' => HASH(0x110916a98)
'FIELD_DELIMITER' => '<-->'
'FILE_NAME' => 'SCRAMBLETEST2.CSV'
'RECORD_NAME' => 'DATA'
'RECORD_SELECTOR' => '^1'
'SECTION_NAME' => undef
How can I put the contents of FIELD_DELIMITER in a scalar?
So in the end I need a scalar ($fieldsep) with '<-->' as contents.
My impression was :
$recname='DATA';
$fieldsep = $recref->{$recname}->{'FIELD_DELIMITER'};
but this results in error :
Use of uninitialized value in print .....
Please can someone help me, I am getting frustrated.
Thanks in advance
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.