• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/db/commonhelper.php
  • Класс: BitrixSaleLocationDBCommonHelper
  • Вызов: CommonHelper::getSqlForDataType
static function getSqlForDataType($type, $len = 0)
{
	if($type == 'int')
		return 'int';

	if($type == 'varchar')
		return 'varchar('.(intval($len) ? intval($len) : '1').')';

	if($type == 'char')
		return 'char('.(intval($len) ? intval($len) : '1').')';

	return '';
}