OleDbParameterCollection::Add Method (String^, OleDbType, Int32, String^)

 

Adds an OleDbParameter to the OleDbParameterCollection given the parameter name, data type, column length, and source column name.

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

public:
OleDbParameter^ Add(
	String^ parameterName,
	OleDbType oleDbType,
	int size,
	String^ sourceColumn
)

Parameters

parameterName
Type: System::String^

The name of the parameter.

oleDbType
Type: System.Data.OleDb::OleDbType

One of the OleDbType values.

size
Type: System::Int32

The length of the column.

sourceColumn
Type: System::String^

The name of the source column.

Return Value

Type: System.Data.OleDb::OleDbParameter^

The index of the new OleDbParameter object.

The following example creates an OleDbParameterCollection, adds an instance of OleDbParameter to the collection, and returns a reference to the new OleDbParameter.

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

.NET Framework
Available since 1.1
Return to top
Show: