Resources
- Full support
- Partial support
Resources
This is an old revision of the document!
Type | String |
---|---|
Default | NULL |
Setting the value of this class variable forces the class to use the specified database connection for a class. Form more information on this, see setDatabaseConnection().
In the example below, an Active Record class called person
is not associated with a table called persons
(the default), but with a table called people
.
class person extends ADOdb_Active_Record { public $_table = 'people'; }