Property | Accessor | Description |
---|---|---|
DbType | get set | The type that the parameter must be converted to before being passed to the database server. Setting this parameter induces a setting of IngresType property. Default is DbType.String. |
Direction | get set | Indicators whether the parameter has an input, input/output, output, or procedure return value. |
IngresType | get set | The type that the parameter must be converted to before being passed to the database server. Setting this parameter induces a setting of DbType property. Default is IngresType.NvarChar if the database supports Unicode UCS-2; otherwise the default is IngresType.VarChar. |
IsNullable | get set | Indicates whether the parameter accepts null values. True = accepts null values. False = does not accept null values. |
ParameterName | get set | The name of the parameter. Default is “”. |
Precision | get set | Maximum number of digits for decimal parameters. Default is 0. |
Scale | get set | Number of decimal places for decimal parameters. Default is 0. |
Size | get set | Maximum size of binary and string data to be sent to the server. Default is inferred from the parameter value. |
SourceColumn | get set | The name of the source column mapped to a DataSet. Default is “”. |
SourceVersion | get set | The DataRowVersion used by an UpdateCommand during an Update operation for setting the parameter. Default is DataRowVersion.Current. |
Value | get set | The value of the parameter. Default is null. |
Method | Description |
ToString | The name of the parameter. |
Constructor Overloads | Description |
---|---|
IngresParameter() | Instantiates a new instance of the IngresParameter class using default property values |
IngresParameter (string, DbType) | Instantiates a new instance of the IngresParameter class using the defined parameter name and DbType. |
IngresParameter (string, IngresType) | Instantiates a new instance of the IngresParameter class using the defined parameter name and IngresType. |
IngresParameter (string, object) | Instantiates a new instance of the IngresParameter class using the defined parameter name and System.Object. The DbType and IngresType are inferred from the .NET Type of the object. |
IngresParameter (string, DbType, string) | Instantiates a new instance of the IngresParameter class using the defined parameter name, DbType, and source column name. |
IngresParameter (string, IngresType, string) | Instantiates a new instance of the IngresParameter class using the defined parameter name, IngresType, and source column name. |
IngresParameter (string, DbType, int) | Instantiates a new instance of the IngresParameter class using the defined parameter name, DbType, and column size. |
IngresParameter (string, IngresType, int) | Instantiates a new instance of the IngresParameter class using the defined parameter name, IngresType, and column size. |
IngresParameter (string, DbType, int, string) | Instantiates a new instance of the IngresParameter class using the defined parameter name, DbType, column size, and source column name. |
IngresParameter (string, IngresType, int, string) | Instantiates a new instance of the IngresParameter class using the defined parameter name, IngresType, column size, and source column name. |
IngresParameter (string, DbType, int, ParameterDirection, bool, byte, byte, string, DataRowVersion, object) | Instantiates a new instance of the IngresParameter class using the defined parameter name, DbType, column size, parameter direction, Boolean indication of whether or not the field can be null, precision, scale, source column name, DataRowVersion describing the version of a System.Data.DataRow, and the value of the object. |
IngresParameter (string, IngresType, int, ParameterDirection, bool, byte, byte, string, DataRowVersion, object) | Instantiates a new instance of the IngresParameter class using the defined parameter name, IngresType, column size, parameter direction, Boolean indication of whether or not the field can be null, precision, scale, source column name, DataRowVersion describing the version of a System.Data.DataRow, and the value of the object. |