IDbCommandAnalysis Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents additional command information for analyzing a query and returning a list of parameter names used in the query.
public interface class IDbCommandAnalysis
public interface IDbCommandAnalysis
type IDbCommandAnalysis = interface
Public Interface IDbCommandAnalysis
Remarks
The IDbCommandAnalysis interface enables you to add additional functionality for analyzing a query (command text) and retrieving a list of parameters used in that query. The IDbCommandAnalysis interface can be used to build a custom data processing extension. For more information about Command classes, see Implementing a Command Class for a Data Processing Extension.
An application does not create an instance of the IDbCommandAnalysis interface directly, but creates an instance of a class that implements IDbCommandAnalysis.
Methods
GetParameters() |
Returns an IDataParameterCollection object representing a list of parameters used in the query. |