Data.Win.ADODB.TParameter.Attributes

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TParameter

Delphi

property Attributes: TParameterAttributes read GetAttributes write SetAttributes default [];

C++

__property TParameterAttributes Attributes = {read=GetAttributes, write=SetAttributes, default=0};

Description

Specifies the attributes of a parameter.

Set Attributes to specify the attributes of a parameter, thus controlling the type of values a parameter will accept. By default, Attributes is assigned no value at all. Attributes may be set to any one or a combination of the three value TParameter Attributes constants: paSigned, paNullable, and paLong.

See Also