OdbcParameter Constructor (String^, OdbcType, Int32)

 

Initializes a new instance of the OdbcParameter class that uses the parameter name, data type, and length.

Namespace:   System.Data.Odbc
Assembly:  System.Data (in System.Data.dll)

public:
OdbcParameter(
	String^ name,
	OdbcType type,
	int size
)

Parameters

name
Type: System::String^

The name of the parameter.

type
Type: System.Data.Odbc::OdbcType

One of the OdbcType values.

size
Type: System::Int32

The length of the parameter.

Exception Condition
ArgumentException

The value supplied in the type parameter is an invalid back-end data type.

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

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: