interface DbServerHandlerInterface in DB Maintenance 8
Same name and namespace in other branches
- 7.2 src/Module/Db/DbServer/DbServerHandlerInterface.php \Drupal\db_maintenance\Module\Db\DbServer\DbServerHandlerInterface
- 2.0.x src/Module/Db/DbServer/DbServerHandlerInterface.php \Drupal\db_maintenance\Module\Db\DbServer\DbServerHandlerInterface
DbServerHandler interface.
Hierarchy
- interface \Drupal\db_maintenance\Module\Db\DbServer\DbServerHandlerInterface
Expanded class hierarchy of DbServerHandlerInterface
All classes that implement DbServerHandlerInterface
2 files declare their use of DbServerHandlerInterface
- MySqlHandler.php in src/
Module/ Db/ DbServer/ MySql/ MySqlHandler.php - MySqlHandler class.
- PgSqlHandler.php in src/
Module/ Db/ DbServer/ PgSql/ PgSqlHandler.php - PgSqlHandler class.
File
- src/
Module/ Db/ DbServer/ DbServerHandlerInterface.php, line 13 - DbServerHandler interface.
Namespace
Drupal\db_maintenance\Module\Db\DbServerView source
interface DbServerHandlerInterface {
/**
* Returns list of tables in the active database.
*/
public function listTables();
/**
* Optimizes table in the active database.
*/
public function optimizeTable($table_name);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DbServerHandlerInterface:: |
public | function | Returns list of tables in the active database. | 2 |
DbServerHandlerInterface:: |
public | function | Optimizes table in the active database. | 2 |