IDbTableDataManager Interface

Represents a table data 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 IDbTableDataManager
'Usage
Dim instance As IDbTableDataManager
public interface IDbTableDataManager
public interface class IDbTableDataManager
public interface IDbTableDataManager

The IDbTableDataManager type exposes the following members.

Methods

  Name Description
Public method DeleteRow Removes a row from a table.
Public method EditRow Modifies the data inside a table row.
Public method GetData Returns table data as a query result.
Public method InsertRow Inserts a row of data into a table.

Top

Remarks

In order to manage table data, you need to implement IDbTableDataManager on the class that you derived from DatabaseProvider. This interface allows to insert, modify, and delete data from tables.

Note

The IDbTableDataManager interface is used to manage data within a table, whereas the IDbTableManager interface is used to manage the actual tables.

Notes for Implementers

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

See Also

Reference

Microsoft.Web.Management.DatabaseManager Namespace