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!

DBCommand.Execute (IDataReader)

When overridden in a derived class, executes the command against the data source.

[Visual Basic]
Overloads MustOverride Public Sub Execute( _
   ByRef dataReader As IDataReader _
)
[C#]
public abstract void Execute(
   ref IDataReader dataReader
);
[C++]
public: virtual void Execute(
   IDataReader** dataReader
) = 0;
[JScript]
public abstract function Execute(
   dataReader : IDataReader
);

Parameters

dataReader
The IDataReader to execute against the data source.

Remarks

Notes to Inheritors: When overridden Execute in a derived class, executes the command against the data source.

See Also

DBCommand Class | DBCommand Members | System.Data.Internal Namespace | DBCommand.Execute Overload List