in reply to What is the proper data structure for CAP::DBH?
You can either pass in an existing DBI database handle, or provide the usual parameters used for DBI->connect()If you haven't tried this already, pass in an existing handle and see if it works - will help narrow the problem.
my $dbh = DBI->connect( ... ); if (not $dbh) { die "Could not connect to DB: ", $DBI::errstr; } $self->dbh_config($dbh);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: What is the proper data structure for CAP::DBH?
by bradcathey (Prior) on Jan 20, 2023 at 00:58 UTC |