in reply to Why do I have to call use DB_File twice? (in program AND module)

It's because "R_NEXT" is a subroutine that you are importing when you say "use DB_File". You could probably avoid the call to "use" by saying DB_File::R_NEXT instead.
  • Comment on Re: Why do I have to call use DB_File twice? (in program AND module)

Replies are listed 'Best First'.
Re: Re: Why do I have to call use DB_File twice? (in program AND module)
by traxlog (Scribe) on Sep 22, 2003 at 21:51 UTC
    Aha!
    Thanks very much!