OleDbParameter.OleDbType Property

Definition

Gets or sets the OleDbType of the parameter.

public:
 property System::Data::OleDb::OleDbType OleDbType { System::Data::OleDb::OleDbType get(); void set(System::Data::OleDb::OleDbType value); };
[System.Data.Common.DbProviderSpecificTypeProperty(true)]
public System.Data.OleDb.OleDbType OleDbType { get; set; }
[System.Data.DataSysDescription("OleDbParameter_OleDbType")]
public System.Data.OleDb.OleDbType OleDbType { get; set; }
[<System.Data.Common.DbProviderSpecificTypeProperty(true)>]
member this.OleDbType : System.Data.OleDb.OleDbType with get, set
[<System.Data.DataSysDescription("OleDbParameter_OleDbType")>]
member this.OleDbType : System.Data.OleDb.OleDbType with get, set
Public Property OleDbType As OleDbType

Property Value

The OleDbType of the parameter. The default is VarWChar.

Attributes

Remarks

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

For a list of the supported data types, see the appropriate OleDbType member. For more information, see DataAdapter Parameters.

Applies to

See also