6.22.2 OracleParameter Constructors
OracleParameter constructors instantiate new instances of the OracleParameter class. 
                  
Overload List:
- 
                        
                        
This constructor instantiates a new instance of
OracleParameterclass. - 
                        
OracleParameter(string, OracleDbType)
This constructor instantiates a new instance of
OracleParameterclass using the supplied parameter name and Oracle data type. - 
                        
OracleParameter(string, object)
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name and parameter value. - 
                        
OracleParameter(string, OracleDbType, ParameterDirection)
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name, data type, and parameter direction. - 
                        
OracleParameter(string, OracleDbType, object, ParameterDirection)
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name, data type, value, and direction. - 
                        
OracleParameter(string, OracleDbType, int)
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name, data type, and size. - 
                        
OracleParameter(string, OracleDbType, int, string)
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name, data type, size, and source column. - 
                        
                        
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name, data type, size, direction, null indicator, precision, scale, source column, source version and parameter value. - 
                        
OracleParameter(string, OracleDbType, int, object, ParameterDirection)
This constructor instantiates a new instance of the
OracleParameterclass using the supplied parameter name, data type, size, value, and direction.