Prado\Data\ActiveRecord\TActiveRecordGateway::getRecordTableInfo PHP 메소드

getRecordTableInfo() 공개 메소드

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