|
|
|
|
|
- Limitations
- xBase
- Number of records processed by the INSERT/UPDATE/DELETE updates
HNbRec (Function) In french: HNbEnr
Not available with this kind of connection
Returns the number of records in a data file, query or HFSQL view: active records, crossed records, deleted records, etc. Caution: HNbRec ignores the current filter.
// Active records in "Customer" data file NbCustomerRec = HNbRec(Customer)
Syntax
<Result> = HNbRec([<Data file> [, <Options>]])
<Result>: Integer - Number of records found,
- -1 if an error occurred. HError returns more details about the problem.
<Data file>: Optional character string Name of data file, HFSQL view or query used. If this parameter is not specified, HNbRec will use the last data file used by the last HFSQL management function (function starting with "H"). <Options>: Optional constant (or combination of constants) Configures the type of record to count. | | hBrowsableNonBlocking | Number of records in the view or query that can currently be read (no record locking). This constant is available for the views and queries in HFSQL Classic or Client/Server. This constant has no effect for the data files and for the Native Connectors | hNonBlocking | Number of records retrieved in the view or query without waiting for the view or query to be entirely filled. To knwo if the execution of the view or query is completed, use the ExecutionCompleted property. This constant is available for the views and queries in HFSQL Classic or Client/Server. This constant has no effect for the data files and for the Native Connectors | hStateActive (default value) | Number of active records (not crossed or deleted). | hStateAll | Total number of records in the data file (hStateActive + hStateCrossed + hStateDel). | hStateCrossed | Number of crossed records. | hStateDel | Number of deleted records (does not include the crossed records). |
Remarks Limitations - HNbRec does not return the number of records modified by an UPDATE query.
- HNbRec does not work with queries that use the hWithFilter constant.
Number of records processed by the INSERT/UPDATE/DELETE updates When running an INSERT/UPDATE/DELETE query on HFSQL data files, the number of added, modified or deleted records is returned by the H.NbRecModificationQuery variable. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|