Add a use warnings; after your use strict. That should help with any oddities caused by your code.

Your tnsentry.txt file could be read into a hash of hashes by the looks of it to me. (See perldsc) You might take a look at some of the CPAN modules that read various text formats. Perhaps one of the Config::* modules. That might save you a bit of time having to write a parser for reading that file in. If nothing else, looking at the POD for a couple of them should give you some good ideas of how to write your own if you want or have to.

Hope that is helpful...

Update:Actually, it looks like DBD::Oracle has the ability to do what you want built right into the module. I have not worked with Oracle, but if your file is like This, the the above module looks like it will do what you want without you having to re-invent the wheel. Again, I have not worked with this, so take this with a grain of salt, or a pound...

...the majority is always wrong, and always the last to know about it...

Insanity: Doing the same thing over and over again and expecting different results...


In reply to Re: perl array with oracle db name by wjw
in thread perl array with oracle db name by homer4all

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.