ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / HFSQL properties
  • ExtendedInfo property and Connection variable
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
ExtendedInfo (Property)
In french: InfosEtendues
Native Connectors (Native Accesses)HFSQL Client/ServerAvailable only with these kinds of connection
The ExtendedInfo property is used to get additional information:
  • about a data file accessed by a Native Connector or HFSQL Client/Server.
  • about an item accessed by a Native Connector or HFSQL Client/Server.
  • about a connection. In this case, this property is equivalent to the CtExtendedInfo property.
This extended information can be modified for a programmatically defined data file, connection or item.
For more details, see the documentation supplied by the provider of the database.
Important: Currently, this property can only be used with AS/400 data files (and fields) and HFSQL Client/Server connections.. On HFSQL Client/Server connections, only the encryption can be managed by the ExtendedInfo property.
This information is displayed in the data model editor:
  • in the description window of a data file.
  • in the description window of the items found in a data file.
  • in the connection description window: under the "Analysis" pane, in the "Connection" group, click on "Connections".
This property can be used:
  • in read mode for a data file (or field) defined in the data model editor or programmatically.
  • in write mode for a data file defined through programming or for a connection.
Example
// Get extended information about the Customer data file
Info(Customer.ExtendedInfo)
// Get extended information about the CustomerName item in the Customer data file
Info(Customer.CustomerName.ExtendedInfo)
Syntax

Finding out the extended information Hide the details

<Extended information> = <Data file/Item/Connection>.ExtendedInfo
<Extended information>: Character string
Extended information about the specified element. The different details are separated by semicolons (';').
<Data file/Item/Connection>: Character string
  • Name of the data file used. This name was defined in the data model editor or with the File Description type.
  • Name of the item used (format: <Data file name>.<Item name>). This name was defined in the data model editor or with the Item Description type.
  • Name of the connection used. This connection can correspond to:

Defining the extended information Hide the details

<Data file/Item/Connection>.ExtendedInfo = <Extended information>
<Data file/Item/Connection>: Character string
  • Name of the data file used. Name defined using the File Description type.
  • Name of the item used (format: <Data file name>.<Item name>). Name defined using the Item Description type.
  • Name of the connection used. This connection can correspond to:
<Extended information>: Character string
Extended information about the specified element. The different details must be separated by semicolons (';').
Note: The list of extended information recognized by OLE DB and Native Connectors is shown on page Optional connection information.
Remarks
WINDEVWEBDEV - Server codeUser code (UMC)PHPAjaxHFSQL Client/Server

ExtendedInfo property and Connection variable

Changing the encryption information of an HFSQL Client/Server connection with the ExtendedInfo property automatically updates the information returned by the Encryption property and vice versa.
Therefore, the following line of code:
MyConnection.Encryption = hEncryptionRC5_16
will modify the ENCRYPTION option in the extended information string.
Similarly, the following line of code:
MyConnection.ExtendedInfo = "CRYPT=RC5_16"
will modify the Encryption property.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/07/2024

Send a report | Local help