'Declaration Public Overloads Function Add( _ ByVal parameterName As String, _ ByVal dbType As OracleDbType, _ ByVal size As Integer, _ ByVal value As Object, _ ByVal direction As ParameterDirection _ ) As OracleParameter
public OracleParameter Add( string parameterName, OracleDbType dbType, int size, object value, ParameterDirection direction )
Parameters
- parameterName
- The name of the parameter.
- dbType
- One of the OracleDbType values.
- size
- The maximum size, in bytes, of the data the parameter can contain.
- value
- The Devart.Common.DbParameterBase.Value of the OracleParameter to add to the collection.
- direction
- Specifies whether the parameter is input, output, both, or it is the return value.
Return Value
The new OracleParameter object.