ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE


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
Secure (Property)
In french: Sécurisé
HFSQL ClassicHFSQL Client/ServerAvailable only with these kinds of connection
The Secure property is used to configure the security level of data file encryption. The security level can be:
  • defined by default,
  • high. Caution: in this case, you will not be able to retrieve the password of the data file.
You can:
  • Find out the security level for encryption (data file defined in the data model editor or by programming).
  • Define the security level for encryption (only when the data file is described by programming).
Example
// Define the encryption security level of the Orders data file
Orders.Secure = True
...
// Validate the data file description
HDescribeFile(Orders)
Syntax

Determining the encryption security level Hide the details

<Security level> = <Data file>.Secure
<Security level>: Boolean
  • True if the security level is maximum,
  • False otherwise.
<Data file>: Character string
Name of the data file used. This name was defined in the data model editor or with the File Description type.

Defining the encryption security level (file described through programming) Hide the details

<Data file>.Secure = <Security level>
<Data file>: Character string
Name of the data file used. This name was defined by the File Description type.
<Security level>: Boolean
  • True if the security level must be maximum,
  • False otherwise.
Remarks
This property corresponds to the "Enable a high-security level " option in the "Details" tab of the data file description window.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment