FireDAC.Stan.Param.TFDParam.Size

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Size: Integer read FSize write FSize default 0;

C++

__property int Size = {read=FSize, write=FSize, default=0};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Stan.Param.pas
FireDAC.Stan.Param.hpp
FireDAC.Stan.Param TFDParam

Description

Specifies the number of characters in a string-typed parameter.

Set Size to indicate the maximum number of:

  • characters allowed in the string-typed parameter;
  • bytes allowed in the byte-typed parameter.

Size only pertains to string-typed or byte-typed parameters. For numeric type parameter, use the NumericScale and Precision properties. For other parameter types, Size should be zero.

See Also