|
|
|
|
|
HugeFile (Property) In french: GrosFichier
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).
// 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|