- Read operation according to a key item or not
- Memos
- Lock
- Various
<Source>.Forward (Function) In french: <Source>.Avance
Not available with this kind of connection
Moves several records forward from the current position in the data file, according to a specified item. The destination record is read and loaded in memory: HFSQL variables are updated (e.g. Customer.Name, i.e. item Name of data file Customer). Several cases may occur after the call to <Source>.Forward: - no other record exists in the data file: <Source>.Out returns True. No read operation is performed.
- the function tries to lock a record that is already locked in read-only: HErrorLock returns True and <Source>.Out returns True.
The management of locks is only performed on HFSQL Client/Server data files or data files handled by a native access. An HFSQL Mobile record cannot be locked. Indeed, the operating system of Pocket PC does not allow you to lock records.
Management of locks not available in PHP.
Access by JDBC: The management of locks is not available for databases accessed by JDBC.
Management of locks not available in SQLite databases.
// Moves to the 2000th record // of the Customer file according to the CustName key Customer.ReadFirst(CustName) Customer.Forward(CustName, 1999)
Syntax
<Result> = <Source>.Forward([<Item> [, <Step> [, <Options>]]])
<Result>: Boolean - True if the move was performed in the file,
- False if an error occurred (lock, end of file, etc.): the record is not read. HError is used to identify the error.
<Source>: Type corresponding to the specified source Name of data file, view or query used. <Item>: Optional character string (with or without quotes) Name of item according to which the browse is performed. If this name is not specified, <Source>.Forward handles the last item of the data file used by the last HFSQL management function (function starting with the letter H). <Step>: Optional integer Number of steps forward (which means number of records to browse). By default, <Step> = 1.
<Options>: Optional Integer constant (or combination of constants) Configures:- the lock mode applied to the record read. By default, the lock performed corresponds to the current lock.
| | hLockNo | No lock (even if HStartLock was called): the record can be read or modified by another application during the reading. | hLockWrite | Lock in write mode: the record currently read can be read by another application but it cannot be modified by another application. | hLockReadWrite | Lock in read/write: the record currently read cannot be read or modified by another application. |
Locks are managed only on HFSQL Client/Server data files or on data files handled by a Native Connector. An HFSQL Mobile record cannot be locked. Indeed, the operating system of Pocket PC does not allow you to lock records.
 The lock options will have no effect if the locks are not supported by the OLE DB provider or by the Native Connector.
Access by JDBC: The management of locks is not available for databases accessed by JDBC.
 Management of locks not available in SQLite databases. - the management of duplicates during the browse. By default, all the duplicates are browsed.
| | hDistinct | When a browse is performed on a key item, a single record is browsed if duplicates are found. |
Remarks Read operation according to a key item or not If the item used is a key item: - if the hDistinct constant is not specified, <Source>.Forward moves forward <Step> key values from the current position.
- if the hDistinct constant is specified, <Source>.Forward moves forward <Step> key values from the current position. If duplicates are found, a single duplicate is read.
If the item used is not a key item: - the hDistinct constant is not available.
- <Source>.Forward moves foward from <Step> active records from the current position.
Memos The memos associated with the record can be automatically read (or not) when reading the record. <Source>.SetMemo is used to customize this automatic read operation. If the memos are supported, the associated text memos are read when the record is read. The binary memos are read only when they are explicitly used ( <Source>.ExtractMemo).
This page is also available for…
|
|
|