ISqlServerObjectExplorerService Interface
This interface is used to expose the SqlServerObjectExplorerService, which can be used to perform various actions found in the SQL Server Object Explorer. All calls to the methods on this interface must be performed from the UI thread. Calls that are not made on the UI thread may throw exceptions.
Namespace: Microsoft.VisualStudio.Data.Tools
Assembly: Microsoft.VisualStudio.Data.Tools.Design (in Microsoft.VisualStudio.Data.Tools.Design.dll)
Syntax
[GuidAttribute("33C78F10-FB16-423C-850D-C44F3C78C736")]
public interface ISqlServerObjectExplorerService
[GuidAttribute("33C78F10-FB16-423C-850D-C44F3C78C736")]
public interface class ISqlServerObjectExplorerService
[<GuidAttribute("33C78F10-FB16-423C-850D-C44F3C78C736")>]
type ISqlServerObjectExplorerService = interface end
<GuidAttribute("33C78F10-FB16-423C-850D-C44F3C78C736")>
Public Interface ISqlServerObjectExplorerService
Methods
Name | Description | |
---|---|---|
Add(SqlConnectionStringBuilder, SqlServerObjectType) | Creates a new connected editor window populated with the new object template for the given object type. |
|
Browse(SqlConnectionStringBuilder) | Shows the SQL Server Object Explorer and expands to the instance provided in the connection. |
|
Delete(SqlConnectionStringBuilder, SqlServerObjectType, String[]) | Deletes objects and dependent objects from a database. A confirmation dialog is presented. |
|
Execute(SqlConnectionStringBuilder, String[]) | Executes the given programmability object. A parameter dialog is presented first, followed by the creation of a new connected editor window where the statement is then executed. |
|
OpenQuery(SqlConnectionStringBuilder) | Creates a new connected editor window. |
|
ViewCode(SqlConnectionStringBuilder, SqlServerObjectType, String[]) | Opens the CREATE statement for the object in a new connected editor. |
|
ViewData(SqlConnectionStringBuilder, SqlServerObjectType, String[]) | Opens an editable data grid for the object's data. |
|
ViewDesigner(SqlConnectionStringBuilder, SqlServerObjectType, String[]) | Opens the designer for the provided object. |
See Also
Microsoft.VisualStudio.Data.Tools Namespace
Return to top