ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / HFSQL functions
  • Read operation according to a key item or not
  • Locks
  • Memos
  • Password
  • Miscellaneous
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Sets the position on the last record of a data file according to a browse item. The record is read and the HFSQL variables are updated (e. g. Customer.Name, in other words, the Name item in the Customer data file).
The highest value in the browse item is read (for more details, see remarks).
In most cases, HReadLast is used to set the position in the data file in order to perform a read loop with HReadPrevious.
Several cases may occur after the call to HReadLast:
  • the data file is empty or there is no record corresponding to the filter (defined by function HFilter): no read is performed and function HOut returns True.
  • the function attempts to block a record already blocked for playback: no playback is performed, function HErrorLock returns True and function HOut returns True.
    PHP The management of locks is not available.
    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.
HReadLast(Customer, Name)
WHILE HOut() = False
	// Process the record
	HReadPrevious(Customer, Name)
END
Syntax
<Result> = HReadLast([<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 (""), HReadLast manipulates the last data file used by the last HFSQL function (function starting with "H").
<Browse item>: Optional character string
Name of item used to loop through the data file or the view. If this name is not specified, HReadLast 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: the ORDER BY of the query if it exists, otherwise the last field used.
  • In the case of a view: the view's sort item (if it exists), otherwise the last item used.
<Options>: Optional constant (or combination of constants)
Configures:
  • the lock set on the record read by HReadLast.
  • whether the filter that was defined must be taken into account.
hForwardOnly
Native Connectors (Native Accesses) Constant that can only be used with Native Connectors (also called Native Accesses).
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 when looping through records 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: HFilter returns the optimized search key for the filter.
Caution: In this case, on large data files, performance problems may occur..
Hyper File 5.5 This variable cannot be used.
hLockNoNo blocking: the recording can be played back or modified by another application during playback..

PHP This constant is not available.

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.

PHP This constant is not available.

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.

PHP This constant is not available.

Java JDBC access: This constant is not available.
hNoRefresh
OLE DBNative Connectors (Native Accesses) HReadLast 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 DBNative Connectors (Native Accesses) 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 HReadLast will remain effective during the calls to HReadPrevious and HReadNext.
To change the lock mode, use:
Native Connectors (Native Accesses) 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 (HReadLastLock) kept for backward compatibility.
PHP The lock options are not available.
Java JDBC access: lock management is not supported for databases that are accessed through JDBC.
Remarks

Read operation according to a key item or not

If the item is a key, HReadLast reads the record with the greatest key value. The sort order taken into account is the one specified in the analysis for this key. If duplicates are found, HReadLast reads the last "duplicate" record according to the sequence of record numbers.

If the item is not a key, HReadLast reads the last 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.
WINDEVWEBDEV - Server codeReports and QueriesiPhone/iPadUser code (UMC)AjaxHFSQL ClassicHFSQL Client/ServerStored proceduresHyper File 5.5OLE DBNative Connectors (Native Accesses)

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 DBNative Connectors (Native Accesses) 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).
WINDEVWEBDEV - Server codeReports and QueriesiPhone/iPadJavaUser code (UMC)External languagePHPHFSQL ClassicHFSQL Client/ServerStored proceduresHyper File 5.5OLE DBNative Connectors (Native Accesses)

Password

If HReadLast 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 is set to True.

Miscellaneous

  • HRecNum returns the current record number.
  • HChangeKey changes the search key while keeping the position on the current record.
  • To optimize the first iterations on a data file, use HOptimize on this data file.
  • This function replaces HReadLastLock and HReadLastNoLock, which were kept for compatibility with WINDEV 5.5.
Component: wd300hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/23/2024

Send a report | Local help