- Managing automatic identifiers
- Modifying the deleted or crossed records
- Modification conflict or deletion conflict
- Managing the duplicates and the integrity
- Version of the data file after a modification
- Managing the binary memos
- Modifying a record selected in a query
- Browsing and modifying a record
- xBase
HModify (Function) In french: HModifie
Not available with this kind of connection
Modifies the specified record or the record found in memory in the data file (query or view). The indexes corresponding to all the keys used in the data file are automatically updated. The memos are added (if necessary) if the management of memos is enabled ( HSetMemo. After the call to HModify: - we recommend that you configure the management of errors:
We advise you to check that no error was generated: Duplicate error, integrity error, password error, modification conflict error and status error during modification conflict. See Assisted management of HFSQL errors for more details. - If the management of duplicates is enabled and if the data file contains a unique key, HErrorDuplicates returns True if the value of modified key is not unique. The record is not modified.
- if a lock problem occurs (attempt to modify a locked record), HErrorLock returns True and the record is not modified.
The management of locks is not available.
- the number of the current record is not modified. By default, the current browse is not affected.
Note: This function can also be used on a HFSQL data file, view or query. Remark: From version 19, HFSQL is the new name of HyperFileSQL.
// Finds the record HReadSeekFirst(Customer, Name, "Smith")
IF HFound() = True THEN // Modify a record in a file // (record described by programming) Customer.FirstName = "Vince" Customer.City = "San Francisco" Customer.Zip = "94102" Customer.Country = "USA" HModify(Customer) END
// Modifies the current record of "Customer" file // displayed in a window ScreenToFile() HModify(Customer)
Syntax
<Result> = HModify([<File name> [, <Record number> [, <Options>]]])
<Result>: Boolean - True if the record was modified,
- False if a problem occurred (integrity error, duplicate error, etc.): the record is not modified. HError is used to identify the error.
<File name>: Optional character string (with or without quotes) Name of data file, HFSQL view or query used. If this name is not specified, HModify handles the last data file used by the last function for HFSQL management (starting with the letter H). <Record number>: Optional integer Number of the record to modify. The record loaded in memory is re-written on the specified record. If this number is greater than the total number of records found in the data file, intermediate deleted records will be created in order for the sequential reading of data file (HRead) to be consistent.
If this parameter is not specified (equal to 0 or to the hCurrentRecNum constant), HModify will modify the current record in the date file.
CAUTION: Do not confuse the record number with the automatic identifier associated with the record. In most cases, these two numbers are not identical. The record number is returned by HRecNum.
To use the <Options> parameter, <Record Number> must necessarily be specified.
<Options>: Optional constant Configures:- the effect of modification on the current browse,
- the mode for calculating the automatic identifier,
- the lock mode applied to the modified record. If no lock constant is specified, the modified record is unlocked.
The management of locks is not available.
- the management of duplicates,
- the management of integrity.
Note: To use this parameter, <Record Number> must necessarily be specified.
| | hAffectBrowse | Effect of modification on the browse: The modification affects the browse. For example, HReadNext used after HModify positions on the record found after the modified record (while taking its new values into account).CAUTION: In any case (hAffectBrowse constant used or not): if HModify is used in a browse and if the value of search item is modified, the current record may be read again in the rest of browse. Indeed, the modification of search item updates the index key of file. This modification is taken into account when reading the next records.
The hAffectBrowse constant has priority over the hWriteDefault constant. | hLockNo (default value) | Lock mode of modified record: No lock (even if HStartLock was used): the modified record will not be locked.
| hLockWrite | Lock mode of modified record: Lock in write mode: the modified record will be locked in write mode. This record can be read by another application but it cannot be modified by another application. Only the current application can modify it or unlock it.
| hLockReadWrite | Lock mode of modified record: Lock in read/write: the modified record will be locked in read/write. This record cannot be read or modified by another application. Only the current application can modify it, read it or unlock it.
| hWriteDefault (default value) | Effect of modification on the browse: The modification does not affect the current browse. For example, HReadNext used after HModify positions on the record found after the current record before the modification.
CAUTION: If HModify is used in a browse and if the value of search item is modified, the current record may be read again in the rest of browse. Indeed, the modification of search item updates the index key of file. This modification is taken into account when reading the next records.
The hAffectBrowse constant has priority over the hWriteDefault constant. | hSetIdAuto | Mode for calculating the automatic identifier: The automatic identifier is not calculated during the addition: the identifier value will be the one stored during the addition. The next value of the identifier calculated by the HFSQL engine will correspond to the greatest value of the identifier in the file +1. A WLanguage error occurs if the hSetIdAuto and hForceIdAuto constants are used at the same time. | hForceIdAuto | Mode for calculating the automatic identifier: The automatic identifier is not calculated during the addition. The identifier corresponds to:- the value assigned to the item by programming (CUSTOMERID = 7 for example)
- the default identifier value specified in the data model editor (if the data file was just opened, with no record read)
- the identifier value found in memory (identifier value for the last record read in the data file).
Once the record is added, the next automatic identifier calculated by the HFSQL engine will be calculated while ignoring the value added by hForceIdAuto. A WLanguage error occurs if the hSetIdAuto and hForceIdAuto constants are used at the same time. | hIgnoreDuplicates | Management mode of duplicates: Ignores the duplicate check for this operation, even if the automatic duplicate check is enabled (HSetDuplicates). A WLanguage error occurs if the hIgnoreDuplicates and hCheckDuplicates constants are used at the same time.
| hIgnoreIntegrity | Management mode of integrity: Ignores the integrity check for this add operation, even if the automatic integrity check is enabled (HSetIntegrity). A WLanguage error occurs if the hIgnoreIntegrity and hCheckIntegrity constants are used at the same time.
| hRecalculateIdAuto | Mode for calculating the automatic identifier: The automatic identifier of the record will be re-calculated during the write operation. This constant has priority over hForceIdAuto and hSetIdAuto.
| hCheckDuplicates | Management mode of duplicates: Checks the duplicates for this operation, even if the duplicate check is disabled (HSetDuplicates). A WLanguage error occurs if the hIgnoreDuplicates and hCheckDuplicates constants are used at the same time.
| hCheckIntegrity | Management mode of integrity: Checks the integrity of operation even if the automatic integrity check is disabled (HSetIntegrity). A WLanguage error occurs if the hIgnoreIntegrity and hCheckIntegrity constants are used at the same time.
|
Remarks Managing the duplicates and the integrity The integrity check and the duplicate check are performed on the keys for which: - a check is enabled,
and - the value of the item is modified in relation to the record found in the data file.
Example:
... CUSTOMER.LastName = "TUBE" CUSTOMER.FirstName = "Vince" HAdd(CUSTOMER) // integrity check and duplicate check performed on // LastName and FirstName if active management CUSTOMER.FirstName = "Mark" HModify(CUSTOMER) // integrity check and duplicate check performed on // FirstName only if active management ...
This page is also available for…
|
|
|
| |
| Cambio de ID o Primary Key |
|
| Como puedo cambiar una llave primaria con hmodify, le asigno el valor manualmente pero no se afecta al guardar. |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
|