ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL functions
  • Functions that modify the result of <Source>.Out
  • Miscellaneous
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Used to find out whether the record on which you want to be positioned is located outside the data file, filter, view or query.
Example
Customer.ReadFirst(Name)
WHILE Customer.Out() = False
// Process the record
Customer.ReadNext(Name)
END
Syntax
<Result> = <Source>.Out()
<Result>: Boolean
  • True if attempt to position on a record located outside the data file, filter, view or query. In this case, the current record corresponds to the one before the move operation.
  • False if no problem occurred: the current record belongs to the data file, filter, view or query.
<Source>: Type corresponding to the specified source
Name of data file, filter, view or query onto which a positioning attempt was performed.
Remarks

Miscellaneous

  • <Source>.Out corresponds to the h.Out variable available in WINDEV 5.5. This variable is kept for backward compatibility.
  • Once a locked record is read, the data file is not read (HErrorLock returns True and <Source>.Out returns True).
    Therefore, if the read operation is performed while looping through an HFSQL data file, the iteration is interrupted.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help