Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^3: Deriving a class from DBI.

by ikegami (Patriarch)
on Mar 23, 2010 at 20:32 UTC ( [id://830392]=note: print w/replies, xml ) Need Help??


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

    Found the documentation, thank you, here.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://830392]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-23 23:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found