OdbcParameter.OdbcType Property
Definition
Gets or sets the OdbcType of the parameter.
public:
property System::Data::Odbc::OdbcType OdbcType { System::Data::Odbc::OdbcType get(); void set(System::Data::Odbc::OdbcType value); };
[System.Data.Common.DbProviderSpecificTypeProperty(true)]
public System.Data.Odbc.OdbcType OdbcType { get; set; }
public System.Data.Odbc.OdbcType OdbcType { get; set; }
[<System.Data.Common.DbProviderSpecificTypeProperty(true)>]
member this.OdbcType : System.Data.Odbc.OdbcType with get, set
member this.OdbcType : System.Data.Odbc.OdbcType with get, set
Public Property OdbcType As OdbcType
Property Value
An OdbcType value that is the OdbcType of the parameter. The default is Nchar
.
- Attributes
Remarks
The OdbcType and DbType are linked. Therefore, setting the DbType changes the OdbcType to a supporting OdbcType.
For a list of the supported data types, see the appropriate OdbcType member. For more information, see DataAdapter Parameters.