AseParameter( )
AseParameter( string parameterName, object value )
AseParameter( string parameterName, AseDbType dbType )
AseParameter( string parameterName, AseDbType dbType, int size )
AseParameter( string parameterName, AseDbType dbType, int size, string sourceColumn )
AseParameter( string parameterName, AseDbType 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 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.