dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleParameter Class / OracleParameter Constructor / OracleParameter Constructor(String,OracleDbType,ParameterDirection)
The name of the parameter.
One of the OracleDbType values.
Specifies whether the parameter is input, output, both, or it is the return value.
Example

OracleParameter Constructor(String,OracleDbType,ParameterDirection)
Initializes a new instance of the OracleParameter class with the parameter name, data type, and parameter direction.
Syntax
'Declaration
 
Public Function New( _
   ByVal parameterName As String, _
   ByVal dbType As OracleDbType, _
   ByVal direction As ParameterDirection _
)
 

Parameters

parameterName
The name of the parameter.
dbType
One of the OracleDbType values.
direction
Specifies whether the parameter is input, output, both, or it is the return value.
Example
The following example creates a new OracleParameter and sets some of its properties.
public void CreateOracleParameter()
{
  OracleParameter myParameter = new OracleParameter("DName", OracleDbType.VarChar);
  myParameter.Direction = ParameterDirection.Input;
  myParameter.Size = 15;
}
Public Sub CreateOracleParameter()
    Dim myParameter As New OracleParameter("DName", OracleDbType.VarChar)
    myParameter.Direction = ParameterDirection.Input
    myParameter.Size = 15
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also