W == [EMAIL PROTECTED] writes:

 W> my $dbh = DBI->connect( .... );
 W> my $big_honkin_data_structure = { house => "semi", car => "oldsmobile",
 W> dbh
 W> => $dbh,
 W>                                   age => 43, ... };
 W> ...

 W> myFavouriteSubroutine( $big_honkin_data_structure->{dbh}, 3 );

 W> ...

 W> sub myFavouriteSubroutine
 W> {
 W>     my ( $dbh, $num ) = @_;
 W>     my $data = $dbh->selectall_arrayref( .... );
 W>     ....
 W> }


This is pretty much what I'm doing.  Tim provided the solution which
was to remove DBI::db from @ISA.


-- 
Brandon

Reply via email to