in reply to Re: Class::DBI, how to pass dynamic connection string to set_db
in thread Class::DBI, how to pass dynamic connection string to set_db

He's just asking about how to use his own method for creating database connections. Class::DBI supports that. You could easilly use DBIx::Connect with Class::DBI.
  • Comment on Re: Re: Class::DBI, how to pass dynamic connection string to set_db

Replies are listed 'Best First'.
Re: Re: Re: Class::DBI, how to pass dynamic connection string to set_db
by Anonymous Monk on Sep 23, 2003 at 19:20 UTC
    Could you provide a high level example?
      To use DBIx::Connect in your Class::DBI class:

      sub db_Main { my $dbh = DBIx::Connect->to('dev_db'); return $dbh; }