IfxParameter constructors
- IfxParameter()
- IfxParameter(System.String name, System.Object value)
- IfxParameter(System.String name, IfxType type)
- IfxParameter(System.String name, IfxType type, System.Int32 size)
- IfxParameter(System.String name, IfxType type, System.Int32 size, System.String sourceColumn)
- IfxParameter(System.String name, IfxType type, System.Int32 size, System.Data.ParameterDirection parameterDirection, System.Boolean isNullable, System.Byte precision, System.Byte scale, System.String sourceColumn, System.Data.DataRowVersion srcVersion, System.Object value)
The parameters are as follows:
- name
- The name of the parameter.
- value
- The value that will be assigned to the parameter.
- type
- The informix type of the parameter. See IfxType enumeration for details.
- size
- The size of the parameter.
- parameterDirection
- Whether this parameter is an input, output, or input/output parameter. Look up System.Data.ParameterDirection in the .NET Framework Class Library for details on the directions.
- sourceColumn
- The source column for the parameter.
- isNullable
- Set to true if the parameter can accept null values; otherwise false.
- precision
- The precision of the parameter.
- scale
- The scale of the parameter.
- srcVersion
- The source version of the parameter.