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!

SQLCommand.Execute (SQLDataReader)

Executes the CommandText against the ActiveConnection and builds a SQLDataReader.

[Visual Basic]
Overloads Shadows Public Sub Execute( _
   ByRef reader As SQLDataReader _
)
[C#]
public new void Execute(
   ref SQLDataReader reader
);
[C++]
public: new void Execute(
   SQLDataReader** reader
);
[JScript]
public new function Execute(
   reader : SQLDataReader
);

Parameters

reader
This will contain a valid SQLDataReader on return from this method. If a valid SQLDataReader cannot be granted, this will be set to null.

See Also

SQLCommand Class | SQLCommand Members | System.Data.SQL Namespace | SQLCommand.Execute Overload List