Data.DB.TLargeintField.MaxValue
[–] Properties | |
---|---|
Type: property | |
Visibility: published | |
Source: Data.DB.pas Data.DB.hpp
| |
Unit: Data.DB | |
Parent: TLargeintField |
Delphi
property MaxValue: Largeint read FMaxValue write FMaxValue default 0;
C++
__property Largeint MaxValue = {read=FMaxValue, write=FMaxValue, default=0};
Description
Limits the maximum value in the large integer field.
Use MaxValue to get or set the maximum value that can be entered into the field. If a value greater than MaxValue is entered, an EDatabaseError exception is raised.
If the value of MaxValue is 0, the large integer field can have a value up to the maximum value that can be represented by the native database type. For 64-bit integer fields, this value is 2 ^63 - 1.