|
|
|
|
|
- Managing automatic identifiers
- Modifying the deleted or crossed records
- Modification conflict or deletion conflict
- Managing duplicates and integrity
- Version of the data file after a modification
- Managing binary memos
- Modifying a record selected in a query
- Modifying and looping through a record
- xBase
<Source>.Modify (Function) In french: <Source>.Modifie
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 ( <Source>.SetMemo. After the call to <Source>.Modify: - it is recommended to configure the management of errors:
WINDEV proposes an automatic management of errors for the following types of errors: Duplicate error, integrity error, password error, modification conflict error and status error during modification conflict, lock error. For more details, see HFSQL error handling help. It is recommended to check that no error was generated: Duplicate error, integrity error, password error, modification conflict error and status error during modification conflict. For more details, see HFSQL error handling help. - 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. Access by JDBC: Locks cannot be managed in databases accessed by JDBC. - the number of the current record is not modified. By default, the current iteration is not affected.
Remark: This function can be used on a data file, an HFSQL view or a query.
// Finds the record Customer.ReadSeekFirst(Name, "Smith") Â IF Customer.Found() = True THEN // Modify a record in a data file // (record described through programming) Customer.FirstName = "Vince" Customer.City = "San Francisco" Customer.Zip = "94102" Customer.Country = "USA" Customer.Modify() END
// Modify current record of "Customer" // displayed in a window Customer.ToFile() Customer.Modify()
Syntax
<Result> = <Source>.Modify([<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.
<Source>: Type corresponding to the specified source Name of data file, HFSQL view or query used. <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 in the data file, intermediate deleted records will be created in order for the sequential reading of the data file (<Source>.Read) to be consistent.
If this parameter is not specified (equal to 0 or to the hCurrentRecNum constant), <Source>.Modify will modify the current record in the data 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 <Source>.RecNum.
To use the <Options> parameter, <Record number> must necessarily be specified.
<Options>: Optional constant Configures:- the effect of modification on the current iteration,
- 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. Access by JDBC: The management of locks is not available for databases accessed by JDBC.
- the management of duplicates,
- the management of integrity.
Remark: To use this parameter, <Record number> must necessarily be specified.
| | hAffectBrowse | Effect of modification on the iteration: The modification affects the iteration. For example, <Source>.ReadNext used after <Source>.Modify 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 <Source>.Modify is used in an iteration and the value of the browse item changes, the current record may be read again in the rest of the iteration. Changing the browse item updates the file index key. This modification is taken into account when reading the next records.
The hAffectBrowse constant has priority over the hWriteDefault constant. | hCheckDuplicates | Management mode of duplicates: Checks for duplicates for this operation, even if the duplicate check is disabled (<Source>.SetDuplicates). 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 (<Connection variable>.SetIntegrity). A WLanguage error occurs if the hIgnoreIntegrity and hCheckIntegrity constants are used at the same time.
| hFalsifyTimestamp | Management of Timestamp items: By default, a Timestamp item contains the date and time the record was created/modified. This date/time is automatically calculated. This constant prevents the Timestamp item from being updated: the last value in the record will be kept. | 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 through 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: Does not check for duplicates for this action, even if the automatic duplicate check is enabled (<Source>.SetDuplicates). 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 (<Connection variable>.SetIntegrity). A WLanguage error occurs if the hIgnoreIntegrity and hCheckIntegrity constants are used at the same time.
| hLockNo (default value) | Lock mode of modified record: No lock: the modified record will not be locked.
| hLockReadWrite | Lock mode of modified record: Lock in read/write mode: 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.
| 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.
| 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.
| 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. | hWriteDefault (default value) | Effect of modification on the iteration: The modification does not affect the current iteration. For example, <Source>.ReadNext used after <Source>.Modify positions on the record found after the current record before the modification.
CAUTION: If <Source>.Modify is used in an iteration and the value of browse item changes, the current record may be read again in the rest of the iteration. Changing the browse item updates the file index key. This modification is taken into account when reading the next records.
The hAffectBrowse constant has priority over the hWriteDefault constant. |
Remarks Managing duplicates and integrity The integrity and duplicate checks 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 = "Milo" Customer.Add() Â Â // integrity and duplicate check performed on // LastName and FirstName if active management Customer.FirstName = "Mark" Customer.Modify() Â // integrity and duplicate check performed on // FirstName only if active management ...
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|