• Модуль: perfmon
  • Путь к файлу: ~/bitrix/modules/perfmon/classes/mysql/table.php
  • Класс: CPerfomanceTableList
  • Вызов: CPerfomanceTableList::GetList
static function GetList($bFull = true)
{
	global $DB;
	if ($bFull)
		$rsTables = $DB->Query("show table status");
	else
		$rsTables = $DB->Query("show tables from ".CPerfomanceTable::escapeTable($DB->DBName));
	return new CPerfomanceTableList($rsTables);
}