• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/db/commonhelper.php
  • Класс: BitrixSaleLocationDBis
  • Вызов: is::dropTable
static function dropTable($tableName)
{
	$dbConnection = MainHttpApplication::getConnection();

	$tableName = $dbConnection->getSqlHelper()->forSql($tableName);

	if($dbConnection->isTableExists($tableName))
		MainHttpApplication::getConnection()->query('drop table '.$tableName);
}