in reply to Re: object creation
in thread object creation

> There might be a module "DB" already installed on your Perl.

sure it belongs to the perldebugger and is available for every Perl

so better don't try to run this code with -d =)

Cheers Rolf

( addicted to the Perl Programming Language)

update
lanx@nc10-ubuntu:~$ corelist DB DB was first released with perl 5.006

Replies are listed 'Best First'.
Re^3: object creation
by hdb (Monsignor) on May 22, 2013 at 16:05 UTC

    Runs fine for me:

    C:\strawberry-perl-5.16.3.1-64bit-portable\scripts>perl -d -e "use DB; + print $INC{'DB.pm'};" Loading DB routines from perl5db.pl version 1.37 Editor support available. Enter h or 'h h' for help, or 'perldoc perldebug' for more help. C:/strawberry-perl-5.16.3.1-64bit-portable/perl/lib/DB.pm
      Sorry I was talking about the OP's project, not your snippet.

      Manipulating DB:: means sabotaging the debugger, which is activated with '-d'.

      Cheers Rolf

      ( addicted to the Perl Programming Language)

        Thanks I rename my module and it's working fine right now. Cheers

        So the minimum change he has to do is to rename his module?