in reply to Re: Object Oriented Pattern help
in thread Object Oriented Pattern help
What if you already have the database connection open in your code? Do you want your objects to open a new connection per object?
But creating a $self->{dbh} is probably a good idea. I would do something like:
my $person = People->new(dbh => $dbh, %other_data);
|
|---|