Prado\Data\ActiveRecord\TActiveRecordGateway::getRecordTableInfo PHP Method

getRecordTableInfo() public method

Returns table information, trys the application cache first.
public getRecordTableInfo ( TActiveRecord $record ) : TDbTableInfo
$record TActiveRecord
return TDbTableInfo table information.
    public function getRecordTableInfo(TActiveRecord $record)
    {
        $tableName = $this->getRecordTableName($record);
        return $this->getTableInfo($record->getDbConnection(), $tableName);
    }