OracleParameter constructors instantiate new instances of the OracleParameter class.
Overload List:
This constructor instantiates a new instance of OracleParameter class.
OracleParameter(string, OracleDbType)
This constructor instantiates a new instance of OracleParameter class using the supplied parameter name and Oracle data type.
OracleParameter(string, object)
This constructor instantiates a new instance of the OracleParameter class using the supplied parameter name and parameter value.
OracleParameter(string, OracleDbType, ParameterDirection)
This constructor instantiates a new instance of the OracleParameter class using the supplied parameter name, data type, and parameter direction.
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.
OracleParameter(string, OracleDbType, int)
This constructor instantiates a new instance of the OracleParameter class using the supplied parameter name, data type, and size.
OracleParameter(string, OracleDbType, int, string)
This constructor instantiates a new instance of the OracleParameter class using the supplied parameter name, data type, size, and source column.
This constructor instantiates a new instance of the OracleParameter class 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 OracleParameter class using the supplied parameter name, data type, size, value, and direction.