OdbcParameter.OdbcType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.