NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SQLParameters.Add

Adds a SQLParameter to the SQLCommand when given the parameter.

[Visual Basic]
Public Function Add( _
   ByVal value As SQLParameter _
) As SQLParameter
[C#]
public SQLParameter Add(
   SQLParameter value
);
[C++]
public: SQLParameter* Add(
   SQLParameter* value
);
[JScript]
public function Add(
   value : SQLParameter
) : SQLParameter;

Parameters

value
The SQLParameter to be added.

Return Value

A reference to the new SQLParameter object.

Remarks

Notes to Inheritors: When overriding Add in a derived class, be sure to call the base class's Add method.

See Also

SQLParameters Class | SQLParameters Members | System.Data.SQL Namespace