ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
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
Items (Property)
In french: Rubriques
HFSQL ClassicHFSQL Client/ServerAvailable only with these kinds of connection
The Items property is used to configure the different items of a full-text index. You can:
  • Find out the different items of a full-text index (defined in the data model editor or through programming).
  • Define the different items of a full-text index (when the full-text index is described through programming).
Example
// Describe the full-text index
MyFullTextIndex.MinimumLength = 4
MyFullTextIndex.Name = "FullTextIndex1"
MyFullTextIndex.Items = "LASTNAME+FIRSTNAME"
MyFullTextIndex.AccentSensitive = True
MyFullTextIndex.CaseSensitive = False
HDescribeFullTextIndex(AFile, MyFullTextIndex)
...
Syntax

Finding the expression of a full-text index Hide the details

<Index expression> = <Data file>.<Full-text index>.Items
<Index expression>: Character string
Name of the different items included in the full-text index. These names of items are separated by the "+" character.
<Data file>: Control name
Name of the data file used. This name was defined in the data model editor or with the File Description type.
<Full-text index>: Character string
Name of full-text index used. This name was defined in the data model editor or with the FullTextIndex Description type.

Defining the expression of a full-text index Hide the details

<Full-text index>.Items = <New expression>
<Full-text index>: Character string
Name of full-text index used. This name was defined by the FullTextIndex Description type.
<New expression>: Character string
Name of the different items included in the full-text index. These names of items are separated by the "+" character.
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help