IDbViewManager.DropView Method

Removes a view from the database.

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

Syntax

'Declaration
Sub DropView ( _
    connectionString As String, _
    schema As String, _
    viewName As String _
)
'Usage
Dim instance As IDbViewManager
Dim connectionString As String
Dim schema As String
Dim viewName As String

instance.DropView(connectionString, schema, _
    viewName)
void DropView(
    string connectionString,
    string schema,
    string viewName
)
void DropView(
    String^ connectionString, 
    String^ schema, 
    String^ viewName
)
function DropView(
    connectionString : String, 
    schema : String, 
    viewName : String
)

Parameters

  • connectionString
    Type: System.String
    The connection string for the database.
  • schema
    Type: System.String
    The schema name for the view.
    Note    If schema is empty, the default schema name will be used.

Remarks

All database providers that implement the IDbViewManager interface must also implement the DropView method, which the database manager will use to remove a view from a database.

Notes for Implementers

If your provider does not support deleting views, you can use the following code sample to raise a not-implemented exception:

public void DropView(string connectionString, string schema, string viewName)

{

   throw new NotImplementedException();

}

Note

See the DROP VIEW (Transact-SQL) topic for more information about the DROP VIEW SQL statement.

Examples

The following code sample implements the DropView method to remove a view from a database in an OLEDB data source.


    ' Remove a view from the database.
    Public Sub DropView( _
            ByVal connectionString As String, _
            ByVal schema As String, _
            ByVal viewName As String) _
            Implements Microsoft.Web.Management.DatabaseManager.IDbViewManager.DropView

        ' Create a new database connection.
        Dim connection As OleDbConnection = New OleDbConnection(connectionString)
        ' Create the SQL for the CREATE VIEW statement.
        Dim dropView As String = String.Format("DROP VIEW {0}", EscapeName(viewName))
        ' Create an OLEDB command object.
        Dim command As OleDbCommand = New OleDbCommand(dropView, connection)
        ' Open the database connection.
        connection.Open()
        ' Execute the SQL statement.
        command.ExecuteNonQuery()

    End Sub


        // Remove a view from the database.
        public void DropView(string connectionString, string schema, string viewName)
        {
            // Create a new database connection.
            using (OleDbConnection connection = new OleDbConnection(connectionString))
            {
                // Create the SQL for the CREATE VIEW statement.
                string dropView = String.Format("DROP VIEW {0}", EscapeName(viewName));
                // Create an OLEDB command object.
                using (OleDbCommand command = new OleDbCommand(dropView, connection))
                {
                    // Open the database connection.
                    connection.Open();
                    // Execute the SQL statement.
                    command.ExecuteNonQuery();
                }
            }
        }

Permissions

See Also

Reference

IDbViewManager Interface

Microsoft.Web.Management.DatabaseManager Namespace