ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
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
HDeleteParameter (Function)
In french: HSupprimeParamètre
HFSQL Client/ServerAvailable only with this kind of connection
Deletes a parameter previously saved with HSaveParameter.
Example
HDeleteParameter("MyParameter")
MyConnection is Connection
 
HDeleteParameter(MyConnection, "MyParameter")
Syntax

Deleting a parameter on the server (in the code of stored procedure) Hide the details

<Result> = HDeleteParameter(<Parameter>)
<Result>: Boolean
  • True if the deletion was performed,
  • False if an error occurred. HErrorInfo is used to identify the error.
<Parameter>: Character string
Name of parameter to delete. This parameter must not correspond to an empty string and it must not contain the "CR" character (Carriage return).

Deleting a parameter on the server (from the Client computer) Hide the details

<Result> = HDeleteParameter(<Connection> , <Parameter>)
<Result>: Boolean
  • True if the deletion was performed,
  • False if an error occurred. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable
Connection to use. This connection corresponds to:
<Parameter>: Character string
Name of parameter to delete. This parameter must not correspond to an empty string and it must not contain the "CR" character (Carriage return).
Component: wd290hf.dll
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