in reply to Re: Threading two text files
in thread Threading two text files

Thank you for the help. The issue was definitely not haveing <INDB> in the seek function. I saw that other PerlMongers caught this as well. I will definitely look at your version of code(as well as other Monger code and compare this with my version. But all am trying to do is search a number of values against a database and display the matches. The code I wrote for this worked well after the correction. The hash will not work for me as my database will contain more than one key value pair.Again thank you for your input. Ostra

Replies are listed 'Best First'.
Re^3: Threading two text files
by LanX (Saint) on May 15, 2013 at 22:02 UTC
    > The hash will not work for me as my database will contain more than one key value pair.

    Sure it does! =)

    It's a HoA (hash of arrays) holding all values per key, check the example output and uncomment pp to see the data structure.

    Cheers Rolf

    ( addicted to the Perl Programming Language)