RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
ADODB.TParameterAttributes Type

TParameterAttributes values indicate the types of values a parameter can accept.

Pascal
TParameterAttributes = set of TParameterAttribute;
C++
TParameterAttribute TParameterAttributes;

ADODB

Use TParameterAttributes values to specify the characteristics of a parameter that control the types of values a parameter can accept. 

The constants that make of the TParameterAttributes type correspond to the ADO ParameterAttributesEnum values of similar names. For instance, the TParameterAttributes type constant paSigned corresponds to the ADO constant adParamSigned. For additional information on these ADO constants and their effects, see the Microsoft Data Access SDK help in the topic for the Attributes property of the ADO Parameter object. 

TParameterAttributes consists of the three constants summarized in the following table:

Parameter Attribute 
Meaning 
psSigned  
The parameter accepts signed values.  
psNullable  
The parameter accepts NULL values.  
psLong  
The parameter accepts long binary data.  

 

TParameter

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!