ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2025

Report based on an HFSQL view
A report based on an HFSQL view is used to print records from an HFSQL Classic or Client/Server view...
Remote HFSQL Administrator: Overview
The remote HFSQL administrator is a WEBDEV site installed with the WEBDEV application server and used to remotely manage the HFSQL Client/Server databases installed on the Web server...
<HFSQL connection>.CheckIndexAsynchronous (Function)
Checks that the data contained in the index file (.NDX file) correctly references the data contained in the HFSQL Client/Server table (.FIC file).
This function is only available in subscription-based versions, starting with WINDEV Suite 2025 - Update 2.
<HFSQL connection>.CheckMemoAsynchronous (Function)
Checks the structural integrity of memos in an HFSQL Client/Server table.
This function is only available in subscription-based versions, starting with WINDEV Suite 2025 - Update 2.
HFSQL functions (prefix syntax)
List of functions for HFSQL management
Managing the HFSQL contexts in the windows and in the reports
An HFSQL context contains information relative to the data used...
HFSQL functions
List of functions for HFSQL management
HFSQL Client/Server functions
Several HFSQL functions are used to manage the HFSQL Client/Server data...
HFSQL Client/Server functions (prefix syntax)
Several HFSQL functions are used to manage the HFSQL Client/Server data...
<Connection variable>.TransactionSavepoint (Function)
Declares a transaction savepoint.
<Source>.DescribeFile (Function)
Describes a table programmatically.
HTransactionSavepoint (Function)
Declares a transaction savepoint.
<Source>.ListStopWord (Function)
Returns the list of stop words used by a full-text index.
HTransactionRollbackToSavepoint (Function)
Rolls the transaction back to the savepoint.
HDescribeFile (Function)
Describes a table programmatically.
fDataDir (Function)
Returns the full path of the directory of HFSQL tables specified by the user when installing the application.
Application triggers
A trigger is a WLanguage procedure automatically called by the HFSQL engine whenever a modification is performed (addition, deletion, modification, ...) on a record of a table.
HListItem (Function)
Returns the list of items:
HCheckIndexAsynchronous (Function)
Checks that the data contained in the index file (.NDX file) correctly references the data contained in the HFSQL Client/Server table (.FIC file).
This function is only available in subscription-based versions, starting with WINDEV Suite 2025 - Update 2.
WDHFDiff: Presentation
WDHFDiff is a tool used to compare HFSQL tables...
DB2 Native Connector: Features and notes
The following paragraphs present the main aspects and specific features of the Native DB2 Connector...
Managing databases in WINDEV Java applications
This document presents the different access modes to databases from a WINDEV Java application...
Link functions
Link functions are used to link the interface with the tables and vice versa. These functions are as follows:
<Source>.CheckIndex (Function)
Checks whether the data found in the index table (.NDX file) properly refers the data found in the table (.FIC file).
<Source>.QueryExecuted (Function)
Determines if a query has been executed.
HDescribeFullTextIndex (Function)
Describes a full-text index of table created programmatically.
HExecuteQueryAsynchronous (Function)
Executes a SELECT query asynchronously.
<Source>.ListItem (Function)
Returns the list of items in a table (query or view) recognized by the HFSQL engine. The tables defined by HDeclare, HDeclareExternal and HDescribeFile are taken into account.
<Source>.ListFullTextIndex (Function)
Returns the list of full-text indexes of a file (a query or a view) recognized by the HFSQL engine.
Native Oracle Connector for WINDEV and WEBDEV
WINDEV and WEBDEV offer an optional Native Oracle Connector (also called Native Oracle Access...
Comparison operators
The comparison operators can be divided into several categories...
HCheckStructure (Function)
Defines the mode for comparing tables.
Filtering a table, a view or a query
A filter is used to define through programming a selection of records corresponding to one or more criteria...
<Source>.CheckMemo (Function)
Checks the structural integrity of memos in an HFSQL table.
Limitations of WINDEV, WEBDEV and WINDEV Mobile
A structure is a custom type of data...
HQueryExecuted (Function)
Determines if a query has been executed.
HCheckMemo (Function)
Checks the structural integrity of memos in an HFSQL table.
<Source>.ExportJSON (Function)
Exports the records found in a table (HFSQL or OLE DB), view or query to a JSON file.
<Connection variable>.TransactionEnd (Function)
Validates the current transaction:
  • the modifications performed on the table since the start of transaction (HTransactionStart) are validated.
  • the transaction file is deleted (if the transaction is the last transaction in progress for a network application)
  • the records locked in read-only by the transaction are unlocked.
File Description (Variable type)
The File Description variable is used to programmatically describe tables.
POUR TOUT / POUR ALL instruction (table browsing)
Training FOR ALL instruction can be used to perform different types of runs...
HTransactionFree (Function)
Transforms all "in transaction" records into "normal" records if they do not belong to a transaction currently in progress.
Type of field: Secure password
"Password" items are used to securely store passwords by using a salt and a hash algorithm...
<Source>.ExecuteQueryAsynchronous (Function)
Executes a SELECT query asynchronously.
SQL commands available in an SQL query
WINDEV allows you to easily run queries in SQL code...
HTransactionInterrupted (Function)
Used to find out whether a transaction was interrupted (the transaction was neither validated nor canceled).
<Source>.ExecuteQuery (Function)
Declares a query created in the query editor to the HFSQL engine and runs this query.
HCheckMemoAsynchronous (Function)
Checks the structural integrity of memos in an HFSQL Client/Server table.
This function is only available in subscription-based versions, starting with WINDEV Suite 2025 - Update 2.
Result of a query in test mode
After its execution in test mode (see Running the query test), the result of the query can be...
HTransactionEnd (Function)
Validates the current transaction:
  • the modifications performed on the table since the start of transaction (HTransactionStart) are validated.
  • the transaction file is deleted (if the transaction is the last transaction in progress for a network application)
  • the records locked in read-only by the transaction are unlocked.
HExportJSON (Function)
Exports the records found in a table (HFSQL or OLE DB), view or query to a JSON file.
HCheckIndex (Function)
Checks whether the data found in the index table (.NDX file) properly refers the data found in the table (.FIC file).
<Connection variable>.TransactionRollbackToSavepoint (Function)
Rolls the transaction back to the savepoint.
Manipulating a database from a Java application
You can start developing your application as soon as the WINDEV project is defined as being a Java project...
<Source>.ExportJSONString (Function)
Exports the records from a table (HFSQL or OLE DB), view, or query to a JSON string.
<Source>.TransactionFree (Function)
Transforms all "in transaction" records into "Normal" records if they do not belong to an ongoing transaction.
HListStopWord (Function)
Returns the list of stop words used by a full-text index.
<Source>.StatNbRecRange (Function)
Returns an estimate regarding the number of entries for a given key item in a given interval of values.
HExportJSONString (Function)
Exports the records from a table (HFSQL or OLE DB), view, or query to a JSON string.
HStatNbRecRange (Function)
Returns an estimate regarding the number of entries for a given key item in a given interval of values.
Native DB2 Connector for WINDEV and WEBDEV
WINDEV and WEBDEV offer an optional Native Connector to DB2...
HExecuteQuery (Function)
Declares a query created in the query editor to the HFSQL engine and runs this query.
<Source>.CheckStructure (Function)
Defines the mode for comparing tables.
<Connection variable>.NotifDeleteEmailRecipient (Function)
Deletes the recipients of an email notification.
<Connection variable>.NotifAddCCRecipient (Function)
Adds recipients for the notifications sent via the Control Centers (WDBal messaging tool).
<Connection variable>.NotifListCCRecipient (Function)
Returns the list of recipients of a notification sent via the Control Centers (WDBal messaging...
HTransactionCancel (Function)
If a transaction is in progress, cancels all the operations performed on the data files...
<Connection variable>.NotifListEmailRecipient (Function)
Returns the list of recipients for a notification by email.
<Connection variable>.NotifDeleteCCRecipient (Function)
Deletes the recipients of a notification sent via the Control Centers (WDBal messaging tool).
Aliases on data files: HAlias
The aliases are used to handle......
Using WDMSG
The different steps for translating the project messages with WDMSG are as follows:...
ScreenToSource (Function)
Automatically initializes: the values of a data file's items in memory with the values...
HNotifListEmailRecipient (Function)
Returns the list of recipients for a notification by email.
HNotifListCCRecipient (Function)
Returns the list of recipients of a notification sent via the Control Centers (WDBal messaging...
HNotifAddCCRecipient (Function)
Adds recipients for the notifications sent via the Control Centers (WDBal messaging tool).
HNotifDeleteCCRecipient (Function)
Deletes the recipients of a notification sent via the Control Centers (WDBal messaging tool).
HNotifDeleteEmailRecipient (Function)
Deletes the recipients of an email notification.
HInfoTask (Function)
Returns the characteristics of a scheduled task in a hScheduledTask variable].
HModifyUser (Function)
Modifies the information about a user according to the elements found in the corresponding...
HInfoGroup (Function)
Returns information about the specified group of users.
HListGroup (Function)
Returns the list of groups of users defined for a connection.
HListUser (Function)
Returns the list of users defined for a connection.
HReconnect (Function)
Performs a reconnection to the server for all the interrupted connections. The uninterrupted...
Items (Property)
The Items property is used to configure the different items of a full-text index.
ManageHTML (Property)
ManageHTML is used to configure the management mode of the HTML format in a full-text index.
ManageRTF (Property)
ManageRTF is used to configure the management mode of the RTF format in a full-text index.
CalculatedDefaultValue (Property)
The CalculatedDefaultValue property is used to: Find out the SQL expression that defines...