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