The C++ standard does not specify any relation between new/delete and the C memory allocation routines, but new and delete are typically implemented as wrappers around malloc and free. |
Стандарт Си++ не описывает какую-либо связь между new/ delete и функциями работы с динамической памятью из Си, хотя new/ delete в общем случае реализованы как обёртки malloc/ free. |
The Delete Temporary Files dialog box appears. |
На экране появится диалоговое окно Delete Temporary Files Settings (Удалить временные файлы). |
The band's single was released alongside their single album, Logic Egoism Delete. |
Сингл был выпущен вместе с их сингл-альбомом Logic Egoism Delete. |
A bug was fixed - a message with station ID in filename couldn't be really deleted by "Delete" command. |
Исправлена ошибка - сообщения, содержащие ID станции в имени файла, реально не удалялись командой Delete. |
It may be used in UNION, any subqueries, and in DELETE and UPDATE commands. |
Может быть использовано в UNION, любых подзапросах, а так же в командах DELETE и UPDATE. |
You can remove history items by right clicking on them and choosing the Delete Selected History Entries option from the drop-down menu. |
Вы можете удалить запрос из журнала кликнув на нем правой кнопкой мыши и выбрав опцию Delete Selected History Entries из выпадающего меню. |
For example, you can not use INSERT, DELETE or UPDATE and stored procedures that do not return the recordset in the text. |
К примеру, в тексте нельзя использовать INSERT, DELETE или UPDATE, а так же указывать хранимые процедуры, которые не возвращают набор данных (Recordset). |
Remove the macrocommand (Delete), avoid removal of the default macrocommand. |
Удалить макрокомманду (Delete), не рекомендуется удалять дефолтную. |
Press Delete Domain, the domain is removed from the blacklist and submissions from it are allowed. |
Нажимаем Delete Domain, домен из блеклиста удален и с него снова могут приниматься сабмиты. |
Use the Delete key or Edit Clear Text to remove the text, value or formula from selected cell(s), row(s) or column(s) without affecting anything else. |
С помощью клавиши Delete или пункта меню Правка Очистить Текст можно удалить текст, число или формулу выделенной ячейки, диапазона, строки или столбца, не удаляя ничего кроме этого. |
Remove the group (Delete), then the you can select what to do with galleries from the removed group, avoid to remove DEFAULT group. |
Удалить группу (Delete), будут предложены варианты что делать с галереями из этой группы, не рекомендуется удалять дефолтную группу. |
// catch all exceptions during data access to Firebird/Interbase from Delphi try// open Delphi Firebird connection ADOConnection1.Open(); ADOConnection1.BeginTrans();// positional parameters with ADOQuery1 do begin// query text with SQL do begin Clear; Add('DELETE FROM COUNTRY WHERE Country=? |
// перехватываем все ошибки обращения к БД Firebird/Interbase из Delphi try// открываем подключенеи Delphi Firebird ADOConnection1.Open(); ADOConnection1.BeginTrans();// Позиционные параметры with ADOQuery1 do begin// текст запроса with SQL do begin Clear; Add('DELETE FROM COUNTRY WHERE Country=? |
Winlogon, a core component of the operating system, responds to the key combination in the following scenarios: Invoking Windows Security When a user is logged onto a Windows computer, pressing Ctrl+Alt+Delete invokes Windows Security. |
Программа входа в систему реагирует на комбинацию клавиш в следующих случаях: Вызов безопасности Windows Если пользователь вошёл в систему, нажатие Ctrl+Alt+Delete вызывает безопасность Windows. |
For example, the rule containing the delete command associated with the target "clean" does not have prerequisites. |
Например, правило, содержащее команду delete («удалить»), связано с целью clean («очистить»), не имеющей предварительного условия. |
The button Delete removes the chosen light effect from the presets list. |
Кнопка Удалить (Delete) удаляет свечение из списка пресетов. |
Click OK on Delete Temporary Files window. |
Нажмите кнопку ОК в окне Delete Temporary Files (Удалить временные файлы). |
or choose Delete Swatch from the menu. |
или выбрать в меню изменения палитры пункт Удалить цвет (Delete Swatch). |
Cannot delete because the storage is not empty. Try a recursive delete with Delete(true). |
Удаление невозможно, так как хранилище не пусто. Попробуйте рекурсивное удаление с Delete(true). |
SELECT FROM mytable WHERE mycol > 100 The following DELETE statement removes only those rows from table mytable where the column mycol is either NULL or has a value that is equal to 100. |
SELECT FROM mytable WHERE mycol > 100 Следующий пример удаляет из таблицы mytable те записи, которые удовлетворяют условию: значения в колонке mycol принимают значения NULL или равны значению 100 DELETE FROM mytable WHERE mycol IS NULL OR mycol = 100 |