AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL Client/Server
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Returns the list of elements stored on an HFSQL server (sets of procedures, stored procedures or queries).
Ejemplo
// Retrieve the elements found on the server
ElementList is string
ElementList = HListStoredElement("MyConnection", hLstDetail + hLstAll)

// Adds the list of element into COMBO_COMBO1
ListAdd(COMBO_COMBO1, ElementList)
Sintaxis
<Result> = HListStoredElement(<Connection> [, <Options>])
<Result>: Character string
List of requested elements. The result is more or less detailed depending on the constant used.
hLstDetail is not specified<Name of element 1> + TAB + <Type> + CR + <Name of element 2> + CR +...
hLstDetail is specified<Name of element 1> + TAB + <Type> + TAB + <Author name> + TAB + <Date and time of update> + TAB + <Name of update author> + TAB + <Name of update computer> + TAB + <Size> + CR +...
Where:
  • <Nom Elément X> Logical name of procedure collection, procedure or query. The name of the procedure has the following format: <Name of set of procedures>.<Name of procedure>.
  • <Type> Element type: Value used to identify the item listed:
    eltProcedureThe listed element is a procedure.
    eltQueryThe listed element is a query.
    eltSetOfProceduresThe listed element is a set of procedures.
  • <Nom Auteur> Name of the person who created the element.
  • <Date Heure MAJ> Date and time of last item update.
  • <Nom Auteur MAJ> Name of the person who last updated the item.
  • <Nom Machine MAJ> Name of the machine that last updated the item.
  • <Taille>: Size of collection or query (0 for a procedure).
<Connection>: Character string or Connection variable
Connection to the HFSQL server. This connection corresponds to:
<Options>: Optional Integer constant (or combination of constants)
Type of list to perform:
hLstAll
(Default value)
Lists all elements in the following order: procedure collections, stored procedures and queries.
hLstDetailLists the detailed information.
hLstQueryLists the queries.
hLstSetLists the sets of procedures.
hLstStoredProcedureLists the stored procedures.
Componente: wd300hf.dll
Versión mínima requerida
  • Versión 11
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 12/06/2025

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