Data.Win.ADODB.TParameter.Size
Delphi
property Size: Integer read GetSize write SetSize default 0;
C++
__property int Size = {read=GetSize, write=SetSize, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Data.Win.ADODB.pas Data.Win.ADODB.hpp |
Data.Win.ADODB | TParameter |
Description
Specifies the size of a string type parameter.
Set Size to indicate the maximum number of characters the parameter may contain. By default, Size is zero.
Note: Size only pertains to string type parameters (like CHAR and VARCHAR). For numeric type parameters, use the NumericScale and Precision properties. For other column types, Size should remain set to zero.