6.16.2.5 OracleParameter(string, OracleDbType, object, ParameterDirection)
This constructor instantiates a new instance of the OracleParameter class using the supplied parameter name, data type, value, and direction.
                  
Declaration
// C# public OracleParameter(string parameterName, OracleDbType type, object obj, ParameterDirection direction);
Parameters
- 
                        parameterNameThe parameter name. 
- 
                        typeThe data type of the OracleParameter.
- 
                        objThe value of the OracleParameter.
- 
                        directionThe ParameterDirectionvalue.
Remarks
Changing the DbType implicitly changes the OracleDbType. 
                  
Unless explicitly set in the constructor, all the properties have the default values.
Default Values:
- 
                        DbType-String
- 
                        ParameterDirection-Input
- 
                        isNullable-true
- 
                        offset-0
- 
                        OracleDbType-Varchar2
- 
                        ParameterAlias- Empty string
- 
                        ParameterName- Empty string
- 
                        Precision-0
- 
                        Size-0
- 
                        SourceColumn- Empty string
- 
                        SourceVersion-Current
- 
                        ArrayBindStatus-Success
- 
                        Value-null