|
|
|
|
HDeleteParameter (Function) In french: HSupprimeParamètre
Available only with this kind of connection
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).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|