ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL functions
  • Automatic management of composite keys
  • Filter and filtered iteration:
  • Enabling/Disabling a filter
  • Non-HFSQL data files
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
Defines and enables a "Start with" filter on a data file, a view or a query. The "Starts with" filter is used to select all the records that start with a specific set of characters.
After its execution, the most common cases are as follows:
  • the filter cannot be created: HFilterStartsWith returns an empty string (""). HError returns the error identifier.
  • the filter is created: HFilterStartsWith returns the optimized search key that will be used to loop through the data file, view or query.
Example
MyKey is string
// Selects all the customers living in a city whose name starts with "Mon"
MyKey = HFilterStartsWith(Customer, City, "Mon")
HReadFirst(Customer, MyKey)
WHILE NOT HOut()
Trace(Customer.CustomerName, Customer.City)
HReadNext(Customer, MyKey)
END
...
// Cancels the filter
HDeactivateFilter(Customer)
Syntax
<Result> = HFilterStartsWith(<Data file> , <Key item> , <Filter for key component 1> [, <Filter for key component 2> [... [, <Filter for key component N>]]])
<Result>: Character string
Browse item. Corresponds to:
  • the search key of data file if the filter is enabled
  • an empty string if the filter cannot be implemented
<Data file>: Character string
Name of the HFSQL data file, view or query used.
<Key item>: Character string
Name of key item onto which the filter will be applied. This item can be a simple key (string) or a composite key.
Caution: this parameter must only contain letters, underlined characters or digits. Otherwise, the name must be enclosed in quotes.
<Filter for key component 1>: Type of the first component of the search key
Value sought for the first component (the 2nd respectively) of composite key.
The type of this parameter must correspond to the type of key item component on which the filter is defined.
<Filter for key component 2>: Type of the second component of the search key
Value sought for the second component of composite key.
The type of this parameter must correspond to the type of key item component on which the filter is defined.
<Filter for key component N>: Type of the N component of the search key
Value sought for component N of composite key .
The type of this parameter must correspond to the type of key item component on which the filter is defined.
Remarks

Automatic management of composite keys

HFilterStartsWith automatically manages the filters on the simple keys and on the composite keys.
Example 1: Using HFilterStartsWith with a simple key:
Res = HFilterStartsWith(Customer, Name, "A")
// Select all the customers whose name starts with A
Example 2: Using HFilterStartsWith with a key made of two items:
// Example where LastNameFirstname is a key made of: LastName + FirstName
// Select all customers whose last name is SMITH
// and whose first name starts with a C
Res = HFilterStartsWith(Customer, LastNameFirstName, "SMITH", "C")
This line of code is equivalent to:
HFilter(Customer, LastNameFirstName, ...
HBuildKeyValue(Customer, LastNameFirstName, "SMITH", "C") + hMinVal, ...
HBuildKeyValue(Customer, LastNameFirstName, "SMITH", "C") + hMaxVal)
Example 3: Using HFilterStartsWith with a key made of three items:
// Example with CUSTINV a key made of: CustomerNumber+Date+Time
// All the invoices of a customer (sorted by date)
Res = HFilterStartsWith(Invoice, CUSTINV, Customer.CustNum)
This line of code is equivalent to:
HFilter(Invoice, CustInv, ...
HBuildKeyValue(Invoice, CustInv, Customer.CustNum) + hMinVal, ...
HBuildKeyValue(invoice, CustInv, Customer.CustNum) + hMaxVal)
Example 4: Using HFilterStartsWith with a key made of three items:
// Example with CUSTINV a key made of: CustomerNumber+Date+Time
// All the invoices of a customer for today (sorted by date)
Res = HFilterStartsWith(Invoice, CustInv, Customer.CustNum, Today())
This line of code is equivalent to:
HFilter(Invoice, CustInv, ...
HBuildKeyValue(Invoice, CustInv, Customer.CustNum, Today()) + hMinVal, ...
HBuildKeyValue(invoice, CustInv, Customer.CustNum, Today()) + hMaxVal)

Filter and filtered iteration:

After the call to HFilterStartsWith, the iteration must be performed on the item returned by HFilterStartsWith. The filter will be ignored if another item is used to loop through the data file.
When a filter is defined and enabled on a data file (view or query), all records read correspond to the filter. If no other record corresponds to the filter during the iteration:
  • HOut returns True
  • the current record corresponds to the last record read with the filter.
For example:
On a filtered data file, after the function:the current record is:
HReadFirstthe first file record corresponding to the filter.
HReadLastthe last file record corresponding to the filter.
HReadNext (or HForward)the next record (or the next Nth record) corresponding to the filter.
HReadPrevious (or HBackward)the previous record (or the previous Nth record) corresponding to the filter.

Enabling/Disabling a filter

  • HDeactivateFilter is used to disable a filter.
  • HActivateFilter is used to re-enable a filter.
  • The filter is deleted when the data file (query or view) is closed (HClose for example).
  • A single filter can exist at a given time on a data file (query or view). If HFilterStartsWith is used several times, only the last filter will be taken into account: the previous filters will be deleted. Similarly, if several filters are used (HFilter* functions), only the last filter will be taken into account.
AndroidAndroid Widget Stored proceduresNative Connectors (Native Accesses)

Non-HFSQL data files

Component: wd290hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help