AseParameter constructors

Syntax 1

AseParameter( )

Syntax 2

AseParameter( string parameterName, object value )

Syntax 3

AseParameter( string parameterName, AseDbType dbType )

Syntax 4

AseParameter( string parameterName, AseDbType dbType, int size )

Syntax 5

AseParameter( string parameterName, AseDbType dbType, int size, string sourceColumn )

Syntax 6

AseParameter( string parameterName, AseDbType dbType, int size, ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value )

Parameters

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 AseDbType 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.