in reply to Re^2: Deriving a class from DBI.
in thread Deriving a class from DBI.
Database handles and statement handles have different methods, so they are two different classes (::db and ::st). DBI itself provides global static methods. There's a fourth class (::dr) for database drivers.
DBI determines the name of the database handle class and the statement handle class based on the package used to create the connection ($pkg->connect), so there's no need to tell DBI about your ::db and ::st class. On the flip side, you need to create all three subclasses even if you only want to subclass one.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Deriving a class from DBI.
by clueless newbie (Curate) on Mar 24, 2010 at 12:13 UTC |