Hi,

Given the following file in the Access/ directory created by make_methods():
    package inspectDB::Access::Manager;
    use base qw(Rose::DB::Object::Manager);
    use inspectDB::Access;
    sub object_class { 'inspectDB::Access' }
    __ PACKAGE__->make_manager_methods('access');
    1;

and this caller:

    #!/usr/bin/perl -w
    use strict;
    use base 'Rose::DB::Object::Manager';
    use inspectDB::Access;
    print inspectDB::Access::Manager->get_access_count(),"\n"; 

How do I eliminate the following error message?
$ perl ./fred.pl
Subroutine init_db redefined at inspectDB/DB/Object/AutoBase1.pm line 7.
11

tia,
jec

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Rose-db-object mailing list
Rose-db-object@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rose-db-object

Reply via email to