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
  • Position in relation to a key item or to a non-key item
  • Position in a filtered iteration
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 a record, based on the approximate position of one of its items. The record is read.
This function can be used with the data files, HFSQL views or queries.
Caution: The HSetPosition function can only be used for positioning.. To find out the current position, use HGetCurrentPosition.
HSetPosition(Customer, Name, 500)
Syntax
<Result> = HSetPosition(<Data file> [, <Item>] , <Position> [, <Precision>])
<Result>: Boolean
  • True if the positioning was performed,
  • False otherwise. HError returns more details about the problem. If no record corresponds, HOut returns True and no record is read.
<Data file>: Character string
Name of the data file, view or query used.
If this name is not specified, HSetPosition will use the last data file used by the last HFSQL function (function starting with "H").
<Item>: Optional character string
Name of the item used.
If this name is not specified, HSetPosition will use the last item used by the last HFSQL management function (function starting with "H").
<Position>: Integer
Approximate position to fix. This position must be found in the [1;1000] interval.
<Precision>: Optional integer
Defines the precision with which the position is performed. Caution: The higher the precision, the longer the positioning time.
hPrecisionHighHigh precision.
hPrecisionLowLow precision.
hPrecisionMedium
(default value)
Medium precision.
Remarks

Position in relation to a key item or to a non-key item

  • For a key item, the position is relative to the order of the record in the index of this item.
  • For a non-key item, the position is relative to the number of the record in the data file (see HRecNum).

Position in a filtered iteration

If a filter with bounds is defined (HFilter without condition string but with lower and upper bounds), the position is relative to the records selected by the filter.
If a condition string is given to HFilter, the position ignores the filter.
Component: wd300hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/07/2024

Send a report | Local help