ASA Programming Guide
Adaptive Server Anywhere .NET Data Provider API Reference
AsaParameter class
void AsaParameter( )
void AsaParameter(
string parameterName,
object value
)
void AsaParameter(
string parameterName,
AsaDbType dbType
)
void AsaParameter(
string parameterName,
AsaDbType dbType,
int size
)
void AsaParameter(
string parameterName,
AsaDbType dbType,
int size,
string sourceColumn
)
void AsaParameter(
string parameterName,
AsaDbType dbType,
int size,
ParameterDirection direction,
bool isNullable,
byte precision,
byte scale,
string sourceColumn,
DataRowVersion sourceVersion,
object value
)
value An Object that is the value of the parameter.
size The length of the parameter.
sourceColumn The name of the source column to map.
parameterName The name of the parameter.
dbType One of the AsaDbType values.
direction One of the ParameterDirection values.
isNullable True if the value of the field can be null; otherwise, false.
precision The total number of digits to the left and right of the decimal point to which Value is resolved.
scale The total number of decimal places to which Value is resolved.
sourceVersion One of the DataRowVersion values.