AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
  • Displaying the result in a List Box or Combo Box control
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
HListQueryParameter (Function)
In french: HListeParamRequête
ODBCNot available with this kind of connection
Returns the list of parameters for a query created in the query editor.
Example
// Retrieve the parameters of QRY_CustomerZip
ParamList is string
ParamList = HListQueryParameter(QRY_CustomerZip)
 
// Adds the list of parameters into COMBO_COMBO1
ListAdd(COMBO_COMBO1, ParamList)
Syntax
<Result> = HListQueryParameter(<Query>)
<Result>: Character string
List of query parameters. The different parameters are separated by CR characters (Carriage Return).
<Query>: Character string
Name of a query created with the query editor. This name can correspond to:
  • the logical name of query defined in the editor.
  • the name and full (or relative) path of the query (".WDR" file). A UNC path can be used.
Remarks

Displaying the result in a List Box or Combo Box control

<Result> can be directly assigned to a List Box or Combo Box control by ListAdd. Each line will have the name of one of the query parameters.
Business / UI classification: Business Logic
Component: wd290hf.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 06/07/2023

Señalar un error o enviar una sugerencia | Ayuda local