SqlParameterCollection::Add Method (String^, SqlDbType, Int32)

 

Adds a SqlParameter to the SqlParameterCollection, given the specified parameter name, SqlDbType and size.

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

public:
SqlParameter^ Add(
	String^ parameterName,
	SqlDbType sqlDbType,
	int size
)

Parameters

parameterName
Type: System::String^

The name of the parameter.

sqlDbType
Type: System.Data::SqlDbType

The SqlDbType of the SqlParameter to add to the collection.

size
Type: System::Int32

The size as an Int32.

Return Value

Type: System.Data.SqlClient::SqlParameter^

A new SqlParameter object.

This overload is useful when you are adding a parameter of a variable-length data type such as varchar or binary.

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

.NET Framework
Available since 1.1
Return to top
Show: