ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
  • Data files over 2 GB
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
The HugeFile property sets the maximum possible size of a data file. You can:
  • Determine if a data file is configured to contain more than 2 GB of data (file defined in the data model editor or programmatically).
  • Define the size characteristics of a data file (only for files defined programmatically).
Example
// Define the maximum size of the Customer data file
Customer.HugeFile = True
...
// Validate the data file description
HDescribeFile(Customer)
Syntax

Checking whether the data file can contain more than 2 GB of data Hide the details

<Result> = <Data file>.HugeFile
<Result>: Boolean
  • True if the data file is configured to contain more than 2 GB of data,
  • 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 whether the data file can contain more than 2 GB of data (data file defined programmatically) Hide the details

<Data file>.HugeFile = <Size 2GB>
<Data file>: Character string
Name of the data file used. This name is defined with the File Description type.
<Size 2GB>: Boolean
  • True if the file must be configured to contain more than 2 GB of data,
  • False otherwise.
Remarks

Data files over 2 GB

The data files exceeding 2 GB can only be created on the NTFS disks. Furthermore, the operating system must support the files exceeding 2 GB.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/12/2024

Send a report | Local help