function backup_migrate_destination_db::_unlock_tables in Backup and Migrate 7.2
Same name and namespace in other branches
- 8.2 includes/destinations.db.inc \backup_migrate_destination_db::_unlock_tables()
- 8.3 includes/destinations.db.inc \backup_migrate_destination_db::_unlock_tables()
- 6.2 includes/destinations.db.inc \backup_migrate_destination_db::_unlock_tables()
- 7.3 includes/destinations.db.inc \backup_migrate_destination_db::_unlock_tables()
Unlock the list of given tables in the database.
1 call to backup_migrate_destination_db::_unlock_tables()
- backup_migrate_destination_db::unlock_tables in includes/
destinations.db.inc - Unlock any tables that have been locked.
1 method overrides backup_migrate_destination_db::_unlock_tables()
- backup_migrate_destination_db_mysql::_unlock_tables in includes/
destinations.db.mysql.inc - Unlock all tables in the database.
File
- includes/
destinations.db.inc, line 301 - Functions to handle the direct to database destination.
Class
- backup_migrate_destination_db
- A destination type for saving to a database server.
Code
function _unlock_tables($tables) {
// Must be overridden.
}