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
Adds recipients for the notifications sent by email. These notifications are sent when the HFSQL server encounters a problem.
Remark: The parameters specified by HNotifConfigure (email server, etc.) are used to send the email.
Example
ctCSConnection is Connection
ctCSConnection.Provider = hAccessHFClientServer
ctCSConnection.User = "admin"
ctCSConnection.Password = ""
ctCSConnection.Server = "test:4900"
HOpenConnection(ctCSConnection)
 
HNotifConfigure(ctCSConnection, hNotifEmail, "FLOWER:25", "test.doc", "doc", "doc@pcsoft.com", False)
HNotifAddEmailRecipient(ctCSConnection, "test.app@gmail.com", hNotifWarning)
Syntax
<Result> = HNotifAddEmailRecipient(<Connection> , <Recipient> , <Minimum level>)
<Result>: Boolean
  • True if the recipient was added.
  • False otherwise. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable
Connection to use. This connection corresponds to:
<Recipient>: Character string
Email address of recipient.
<Minimum level>: Integer constant
Minimum level of gravity from which a notification is sent:
hNotifCriticalThe notifications will be sent from the critical level (for the critical and error problems).
Example of critical error: "Error while preparing the replica on the master."
hNotifErrorThe notifications will be sent for the error problems only.
Example of error: "The statistical file for server activity is damaged. It will be reinitialized."
hNotifInformationThe notifications will be sent from the information level (for the information, warning, critical and error problems)
Exemples of information:
  • During the automatic server update:
    • "The server will be stopped for update. Another notification will be added after the update."
    • "The server was updated to version XXX."
  • During the search for necessary keys on a database in exploitation.
hNotifWarningThe notifications will be sent from the warning level (for the warning, critical and error problems).
Example of warning: The XX server and the YY server have different times. The resolution of conflicts during the replication may be incorrect."

The order of gravity is:
  • Information.
  • Warning.
  • Error.
  • Critical.
Component: wd290hf.dll
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help