====== $_table ======
~~NOTOC~~
^Type|String|
^Default|NULL|
===== Description =====
Setting the value of this class variable overrides the name of the database table associated with the Active Record set.
===== Usage =====
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';
}