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
<Connection variable>.ListStoredElement (Function)
In french: <Variable Connexion>.ListeElémentStocké
HFSQL Client/ServerAvailable only with this kind of connection
Returns the list of elements stored on an HFSQL server (sets of procedures, stored procedures or queries).
Example
// Describe the connection
MyConnection is Connection
 
// Retrieve the elements found on the server
ElementList is string
ElementList = MyConnection.ListStoredElement(hLstDetail + hLstAll)
 
// Adds the list of element into COMBO_COMBO1
COMBO_COMBO1.Add(ElementList)
Syntax
<Result> = <Connection>.ListStoredElement([<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:
  • <Name of element X>: Logical name of the set of procedures, the procedure or the query. The name of the procedure has the following format: <Name of set of procedures>.<Name of procedure>.
  • <Type>: Type of element: Value used to identify the listed element:
    eltProcedureThe listed element is a procedure.
    eltQueryThe listed element is a query.
    eltSetOfProceduresThe listed element is a set of procedures.
  • <Author name>: Name of the person who created the element.
  • <Date and time of update>: Date and time of the last update performed on the element.
  • <Name of update author>: Name of the person who performed the last update on the element.
  • <Name of update computer>: Name of the computer that performed the last update on the element.
  • <Size>: Size of the set or size of the query (0 for a procedure).
<Connection>: Connection variable
Name of the Connection variable that describes the connection to the HFSQL server.
<Options>: Optional Integer constant (or combination of constants)
Type of list to perform:
hLstAll
(Default value)
Lists all elements in the following order: sets of procedures, stored procedures and queries.
hLstDetailLists the detailed information.
hLstQueryLists the queries.
hLstSetLists the sets of procedures.
hLstStoredProcedureLists the stored procedures.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help