Prado\Wsat\TWsatBaseGenerator::renderAllTablesInformation PHP Метод

renderAllTablesInformation() публичный Метод

    public function renderAllTablesInformation()
    {
        foreach ($this->getAllTableNames() as $table_name) {
            echo $table_name . "<br>";
            $tableInfo = $this->_dbMetaData->getTableInfo($table_name);
            echo "Table info:" . "<br>";
            echo "<pre>";
            print_r($tableInfo);
            echo "</pre>";
        }
    }