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
Allows you to find out the properties of an HFSQL server.
Example
// Describe the connection
MyConnection is Connection
 
// Open the connection
MyConnection.OpenConnection()
...
ServerNotes is string
NotesServer = MyConnection.InfoServerProperty(hNotes)
IF ServerNotes <> "" THEN
Trace("Description of the server: " + NotesServer)
END
Syntax
<Result> = <Connection>.InfoServerProperty(<Property>)
<Result>: Character string
  • Value of requested property,
  • Empty string ("") if an error occurred.
<Connection>: Connection variable
Name of the Connection variable that describes the connection for which a property value is requested.
<Property>: Integer constant
Property to find for the server:
hNotesDescription of the server or any other information associated with the server by <Connection variable>.ModifyServerProperty.
If this constant is used, <Result> is a character string.
Remarks
To modify the properties of a server, use <Connection variable>.ModifyServerProperty.
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