• Модуль: perfmon
  • Путь к файлу: ~/bitrix/modules/perfmon/lib/sql/trigger.php
  • Класс: BitrixPerfmonSqlTrigger
  • Вызов: Trigger::getDropDdl
public function getDropDdl($dbType = '')
{
	switch ($dbType)
	{
	case "MYSQL":
		return "// ".get_class($this).":getDropDdl for database type [".$dbType."] not implemented";
	case "MSSQL":
		return "DROP TRIGGER ".$this->name;
	case "ORACLE":
		return "DROP TRIGGER ".$this->name;
	default:
		return "// ".get_class($this).":getDropDdl for database type [".$dbType."] not implemented";
	}
}