AdoDotNetConnectionSupport.PreparedCommands Property

Retrieves a list of IDbCommand objects that have been previously prepared.

Namespace:  Microsoft.VisualStudio.Data.AdoDotNet
Assembly:  Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)

Syntax

'宣言
Protected ReadOnly Property PreparedCommands As IList
'使用
Dim value As IList

value = Me.PreparedCommands
protected IList PreparedCommands { get; }
protected:
property IList^ PreparedCommands {
    IList^ get ();
}
protected function get PreparedCommands () : IList

Property Value

Type: System.Collections.IList

Returns an IList object instance containing prepared IDbCommand instances.

Remarks

When a client makes a call to the Prepare method, the AdoDotNetConnectionSupport class creates a new IDbCommand object and prepares the command. The return value of the Prepare method is a string that can then be passed to one of the Prepared type. The Execute methods along with the Prepared type. The Execute methods then identify the existing IDbCommand type from the string.

Permissions

See Also

Reference

AdoDotNetConnectionSupport Class

AdoDotNetConnectionSupport Members

Microsoft.VisualStudio.Data.AdoDotNet Namespace