This topic has not yet been rated - Rate this topic

OracleParameter.DbType Property

Gets or sets the DbType of the parameter.

Namespace:  System.Data.OracleClient
Assembly:  System.Data.OracleClient (in System.Data.OracleClient.dll)
'Declaration
Public Overrides Property DbType As DbType
'Usage
Dim instance As OracleParameter 
Dim value As DbType 

value = instance.DbType

instance.DbType = value

Property Value

Type: System.Data.DbType
One of the DbType values. The default is AnsiString.

Implements

IDataParameter.DbType
IDataParameter.DbType
ExceptionCondition
ArgumentOutOfRangeException

The property was not set to a valid DbType.

The OracleType and DbType are linked. Therefore, setting the DbType changes the OracleType to a supporting OracleType.

The DbType, OracleType, and Size properties of a parameter can be inferred by setting Value. Therefore, you are not required to specify them. However, they are not exposed in OracleParameter property settings. For example, if the size of the parameter has been inferred, Size does not contain inferred value after statement execution. For String data types the default is AnsiString.

For a list of the supported data types, see the appropriate OracleType member. For more information, see DataAdapter Parameters (ADO.NET).

The following example creates an OracleParameter and sets some of its properties.

Public Sub CreateOracleDbParameter()
    Dim parameter As New OracleParameter()
    parameter.ParameterName = "pDName"
    parameter.DbType = DbType.String
    parameter.Value = "ENGINEERING"
    parameter.SourceColumn = "DName" 
End Sub

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.