ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
  • Properties specific to the description of data files
  • How to describe data files programmatically?
  • Handling the items of a data file described programmatically
  • Journalism
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
A File Description variable is used to describe one or more data files through programming. The description of each data file is validated by HDescribeFile.
After this validation:
  • This data file can be handled like any other data file described in the analysis.
  • The "File Description" variable is reinitialized and it can be used to describe another data file through programming.
Example
UnFichier is File Description
MonFichier1, MonFichier2 are File Descriptions
// Description du fichier de données "CLIENT"
UnFichier is File Description
 
UnFichier.Name = "CLIENT"
UnFichier.Type = hFileNormal
UnFichier.FicCryptMethod = hEncryptionStandard
 
// Description des rubriques du fichier de données
...
 
// Validation de la description du fichier de données "CLIENT"
HDescribeFile(UnFichier)
Syntax

Declaring one or more descriptions of data files Hide the details

<Variable name> is File Description
<Variable name 1>, <Variable name 2> are File Descriptions
<Variable name>:
Name of the "File Description" variable to declare.
Remark: The a and an keywords are optional: they provide better readability.

Describing a "File Description" variable Hide the details

To describe a "File Description" variable:
Use the WLanguage properties specific to the descriptions of data files. For more details, see remarks.
To validate the description of a "File Description" variable:
Use the HDescribeFile function.
Remarks

Properties specific to the description of data files

The table below presents the properties specific to the description of data files:
Remark: The properties in bold followed by a star (*) must necessarily be initialized when a data file is described through programming.
Property nameEffect
MmoPackMethodCompression mode of the MMO file (containing the text and binary memos) associated with the data file
FicCryptMethodData file encryption mode
MmoCryptMethodEncryption mode of memo file (.MMO extension) associated with the data file
NdxCryptMethodEncryption mode of index file associated with the data file
CtAccessType of access to the file when connecting to a specific table via OLE DB (taking into account the changes made with HConnect)
CtDescribedAccessType of access to the file when connecting to a specific table via OLE DB (ignoring the changes made with HConnect)
CtDatabaseOLE DB data source when connecting to a specific table (taking into account the changes made with HConnect)
CtDescribedDatabaseOLE DB data source when connecting to a specific table (ignoring the changes made with HConnect)
CtDescribedCaptionCaption of the connection to the OLE DB data source
CtDescribedPasswordPassword used to open the file during an OLE DB connection
CtOLEDBProviderName of the OLE DB server used (taking into account the changes made with HConnect).
CtDescribedOLEDBProviderName of the OLE DB server (ignoring the changes made with HConnect).
CtUserNameName of the user during an OLE DB connection (taking into account the changes made by HConnect).
CtDescribedUserNameName of the user during an OLE DB connection (ignoring the changes made with HConnect).
FormatFormat of data in the data file (ANSI or Unicode).
HugeFileMaximum size of a data file.
UnalterableMode for managing the unalterability of data file.
LogMethodLog mode of a data file.
WDD55PasswordPassword that will be used to handle a file defined through programming in Hyper File 5.5 format in an analysis in WINDEV format.
Name ( * )Name of HFSQL file.
Name55Logical name of a file in Hyper File 5.5 format found in an analysis in WINDEV format.
DescribedNameLogical name of a data file.
PhysicalNamePhysical name of data files.
DescribedPhysicalNamePhysical name of HFSQL files (while ignoring the changes of name performed by HChangeName).
New in version 28
NullableIndex
How to manage the "Null" value for a key field.
NullSupportedManagement mode of NULL value.
RepeatableReadSupportedThe file is used in an HFSQL Client/Server transaction that includes a "Repeatable Read" isolation mode.
DirectoryPhysical directory of HFSQL files (this property takes into account the changes of directory performed by HChangeDir or HSubstDir).
DescribedDirectoryPhysical directory of HFSQL files (this property ignores the changes of directory performed by HChangeDir or HSubstDir).
LogDirectoryDirectory of log file described in the analysis.
TextItemCompletedFills (or not) the text items with space characters.
SecureSecurity level regarding the encryption of data files.
TypeType of data file.
WDD55Path of the WDD file in 5.5 format used to handle the data files in 5.5 format in a WINDEV application.

How to describe data files programmatically?

To describe data files programmatically:
  1. Declare the "File Description", "Item Description", "FullTextIndex Description" and "Link description" variables (if necessary).
  2. For each data file:
  3. If necessary, describe the characteristics of the links using HFSQL properties.
  4. If necessary, validate the description of each link (HDescribeLink).

Handling the items of a data file described programmatically

When creating a data file in the data model editor, the names of the data files and items are automatically recognized by the compiler.
When creating a data file using a "File Description" variable, the names of the data file and its items can be defined with the nom property. These names are not automatically recognized by the compiler. A compilation error occurs if these names are used to identify the data file or the items.
The name of the data file must be declared as data source using the data source keyword, for the compiler to recognize this name. This data file can be handled by its name in the code editor.
For example:
UnFichier is File Description
...
UnFichier.Name = "CLIENT"
...
HDescribeFile("CLIENT")
...
CLIENT is Data Source
...
HReadFirst(CLIENT, "NOMCLI")
Remark: The name of the data file can also be declared with the External keyword. However, the process execution will be slower.

Journalism

When the data file is described programmatically:
  • if the data file is logged and if no item is logged, all the items (except for the composite keys) are automatically logged.
  • if the data file is logged and if at least one item is logged, the other items are not modified.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment