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 Client/Server functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
HUpdateQuery (Function)
In french: HMiseAJourRequête
HFSQL Client/ServerAvailable only with this kind of connection
Warning
From version 27, HRefreshQuery is kept for backward compatibility. This function has been replaced with HUpdateQuery.
Creates or updates a query on an HFSQL server. Then, the query (.WDR file) can be used in a stored procedure on the server.
Example
// Description de la connexion
MaConnexion is Connection

// Mettre à jour ou créer la requête
HUpdateQuery(MaConnexion, Requête1)

// Mettre à jour la requête même si le serveur possède une version plus récente de la requête
HUpdateQuery(MaConnexion, Requête1, True)
Syntax
<Result> = HUpdateQuery(<Connection> , <Query> [, <Force>])
<Result>: Boolean
  • True if the query was created or updated,
  • False otherwise. HError is used to identify the error.
<Connection>: Character string or Connection variable
Connection to the server on which the query must be created or updated. This connection corresponds to:
<Query>: Character string
Name of the query to be created or updated on the server.
If this parameter corresponds to "*", all the queries will be updated or created on the server.
<Force>: Optional boolean
  • False (default): the query will be created or updated:
    • if the query is not found on the server.
    • if an earlier version of the query is found on the server.
  • True: the query will be updated in all cases.
Business / UI classification: Business Logic
Component: wd300hf.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/12/2025

Send a report | Local help