IDbViewManager Interface

Represents a view manager interface within a database provider.

Namespace:  Microsoft.Web.Management.DatabaseManager
Assembly:  Microsoft.Web.Management.DatabaseManager (in Microsoft.Web.Management.DatabaseManager.dll)

Syntax

'Declaration
Public Interface IDbViewManager
'Usage
Dim instance As IDbViewManager
public interface IDbViewManager
public interface class IDbViewManager
public interface IDbViewManager

The IDbViewManager type exposes the following members.

Methods

  Name Description
Public method CreateView Creates a view within the database.
Public method DropView Removes a view from the database.
Public method EditView Modifies the definition of a view in the database.
Public method GetViews Retrieves a list of views in a database.

Top

Remarks

In order to manage views, you need to implement IDbViewManager on the class that you derived from DatabaseProvider. This interface allows to create, modify, and delete views.

Notes for Implementers

If your provider implements the IDbViewManager interface, your provider must also implement all of the following members:

See Also

Reference

Microsoft.Web.Management.DatabaseManager Namespace