Data.DB.TLargeintField.MinValue

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TLargeintField

Delphi

property MinValue: Largeint read FMinValue write FMinValue default 0;

C++

__property Largeint MinValue = {read=FMinValue, write=FMinValue, default=0};

Description

Limits the minimum value in the large integer field.

Use MinValue to get or set the minimum value that can be entered into the field. If a value smaller than MinValue is entered, an EDatabaseError exception is raised.

If the value of MinValue is 0, the large integer field can have a value as small as the native database type can represent. For 64-bit integer fields, this minimum value is -2 ^63

See Also