AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
  • Browse item
  • Browsing queries
  • Locks
  • Memos
  • Password
  • Native XML Connector
  • Miscellaneous
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Positions on the first file record according to a browse item. The record is read and the HFSQL variables (e.g. Customer.Name, i.e. the field Name field of the data file Clientdata file) are updated.
Values in the browse item are read in ascending order (for more details, see the the remarks).
In most cases, HReadFirst is used to set the position in the data file in order to perform a read loop with HReadNext.
Several cases may occur after the call to HReadFirst:
  • the data file is empty or there is no record corresponding to the filter (defined by HFilter): no reading is performed and function HOut returns True.
  • the function tries to read a Record already blocked in playback: no playback is performed, function HErrorLock returns True and function HOut returns True.

    Java JDBC access: lock management is not supported for databases that are accessed through JDBC.
This function can be used with the data files, HFSQL views or queries.
Ejemplo
// Read 1st record
HReadFirst(Customer, Name)
WHILE HOut(Customer) = False
// Process the record
HReadNext(Customer, Name)
END
Sintaxis
<Result> = HReadFirst([<Data file> [, <Browse item>] [, <Options>]])
<Result>: Boolean
Corresponds to:
  • False if an error occurs. In this case, HError returns an integer other than 0. HErrorInfo returns more details about the error. The record is not read.
  • the value of HFound in the other cases (the record can be read, even if <Result> returns False).
<Data file>: Optional character string
Name of data file, HFSQL view or query used. If this parameter is an empty string (""), HReadFirst manipulates the last data file used by the last HFSQL function (function starting with "H").
<Browse item>: Optional character string
Name of the item used to browse the data file or view (this parameter is not taken into account for queries). If this name is not specified, HReadFirst will use:
  • In the case of a data file the last browse item used on this file by the last HFSQL management function (function beginning with the letter H). If this item does not exist, the best browse item is automatically used.
  • In the case of a query ORDER BY of the query if available, otherwise according to the last field used.
  • In the case of a view: the sort item of the view (if there is one), otherwise the last item used.
<Options>: Optional constant
Used to configure:
  • the lock set on the record read by HReadFirst
  • whether the filter that was defined must be taken into account.
hForwardOnly
Conectores Nativos This constant can only be used with Native Connectors.
Optimizes simple iterations that do not use the following features:
  • Reading the previous record.
  • Modifying a record.
  • Saving position.
If one of these features is used, the result may differ from the expected one.
For example, this constant can be used to populate a Table control programmatically.
hKeepFilterThe filter set by HFilter will be taken into account, even if the search key is not optimized for the filter.
Reminder function HFilter returns the optimized route key for the filter.
Caution: in this case, on large data files, performance problems may occur..
Hyper File 5.5 This constant cannot be used.
hLockNoNo blocking: the Record can be played back or modified by another application during playback.

Java JDBC access: This constant is not available.
hLockReadWriteRead/write lock: the record being read cannot be read or modified by another application.
OLE DB Lock in write-only. Operating mode equivalent to the hLockWrite constant.


Java JDBC access: This constant is not available.
hLockWriteWrite lock: the record currently read can be read by another application but it cannot be modified by another application.

Java JDBC access: This constant is not available.
hNoRefresh
OLE DBConectores Nativos HReadFirst does not refresh the content of the table or query. If possible, the query is not re-run. All the saved positions are stored.
OLE DBConectores Nativos The lock options will have no effect if the locks are not supported by the OLE DB provider or by the Native Connector.
OLE DB The lock mode specified by HReadFirst will remain effective during the calls to HReadPrevious and HReadNext.
To change the lock mode, use:
Conectores Nativos For Native Oracle Connector, a different lock mode can be specified for each record. However, if a transaction was started by SQLTransaction before setting the lock, the lock will only be released at the end of the transaction (SQLTransaction with the sqlCommit or sqlRollBack constant).
Hyper File 5.5 The lock options are ignored. Use locking read functions (HReadFirstLock) kept for backward compatibility.
Java JDBC access: lock management is not supported for databases that are accessed through JDBC.
Observaciones

Browse item

If the browse item is a key, HReadFirst reads the record with the lowest key value. The sort order taken into account is the one specified in the analysis for this key. If duplicates are found, HReadFirst reads the first "duplicate" record according to the sequence of record numbers.
If the browse item is not a key, HReadFirst reads the first active record. When browsing the data file, the records will be sorted according to their record number.
In this case, the selected browse item will appear in red in the code editor and a warning will be displayed in the "Code" pane.
Note: The automatic completion only offers the key items.
WINDEVOLE DBConectores Nativos

Browsing queries

By default, HReadFirst re-executes the query to refresh the result. To avoid re-executing the query, we recommend that you use the hNoRefresh constant.
Browsing a query run with the hQueryWithoutCorrection constant:
To browse the records in the order returned by the database, there is no need to specify a browse item. Example:
HExecuteQuery(MyQuery, hQueryWithoutCorrection)
...
HReadFirst(MyQuery, hNoRefresh)
If a browse item is specified, the query result is retrieved and indexed in its entirety. The iteration is performed on the specified item. The initial sort of the query (specified by ORDER BY) is ignored. The created index (in HFSQL format) is sensitive to the case, to the punctuation, to the accented characters and in ascending order.
Example:
HExecuteQuery(MyQuery, hQueryWithoutCorrection)
...
HReadFirst(MyQuery, MyItem, hNoRefresh)
The created index is used to perform searches on the query result.
WINDEVCódigo de Usuario (UMC)Lenguaje ExternoHFSQL ClassicHFSQL Client/ServerProcedimientos almacenadosHyper File 5.5OLE DBConectores Nativos

Locks

By default (<Options> not specified), the record is not locked.
If a lock is requested (hLockWrite or hLockReadWrite constant), the record will be read only if this record is not already locked.
OLE DBConectores Nativos The lock options will have no effect if the locks are not supported by the OLE DB provider or by the Native Connector.

Memos

The memos associated with the record can be automatically read (or not) when reading the record. HSetMemo 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 (HExtractMemo).

Password

If HReadFirst is the first function that handles the specified data file, the password is checked when the opening data file. If the password is incorrect, HErrorPassword returns True and HOut returns True.
WINDEVWindowsCódigo de Usuario (UMC)Procedimientos almacenadosConectores Nativos

Native XML Connector

The behavior of HReadFirst depends on HActivateAutoFilter/HDeactivateAutoFilter.
HActivateAutoFilter is enabled by default.
Therefore, to read the content of XML file, read the content of main file (the parent) then read the content of linked files (the children).
When reading a data file, a filter is automatically applied to the linked data files in order to only read the records corresponding to the main file.
For example:
When browsing the Person file, it is possible to find out the person's email address.
To do so, simply set the position on the "Person" file and apply HReadFirst to the "Email" file.
In this case, the record read in the "Email" file will correspond to the first email associated with the current record in the "Person" file.
If this mechanism is disabled (HDeactivateAutoFilter), the record read in the "Email" file will correspond to the first record found in the Email file (and not to the child of the record read in the "Person" file).

Miscellaneous

  • HRecNum returns the current record number.
  • HChangeKey changes the search key while keeping the position on the current record.
  • To optimize the time taken for the first few runs of a data file, use function HOptimize.
  • This function replaces HReadFirstLock and HReadFirstNoLock, which were kept for compatibility with WINDEV 5.5.
Componente: wd300hf.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local