IDbTableManager Interface

Represents a table manager interface for the database provider.

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

Syntax

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

The IDbTableManager type exposes the following members.

Methods

  Name Description
Public method CreateTable Creates a table in a database.
Public method DropTable Removes a table from the database.
Public method EditTable Modifies a table in a database.
Public method GetPrimaryKey Returns a list of primary keys for the specified table.
Public method GetTableInfo Returns the table information for a table.
Public method GetTables Returns a list of tables from a database.

Top

Remarks

In order to manage tables, you must implement IDbTableManager on the class that you derived from DatabaseProvider. This interface allows to create, modify, and delete tables.

Note

Use the IDbTableManager interface to manage the actual tables, and use the IDbTableDataManager interface to manage data within a table.

Notes for Implementers

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

See Also

Reference

Microsoft.Web.Management.DatabaseManager Namespace