Same name in this branch
  1. 4.7.x includes/database.pgsql.inc \db_unlock_tables()
  2. 4.7.x includes/database.mysqli.inc \db_unlock_tables()
  3. 4.7.x includes/database.mysql.inc \db_unlock_tables()
Same name and namespace in other branches
  1. 5.x includes/database.pgsql.inc \db_unlock_tables()
  2. 5.x includes/database.mysqli.inc \db_unlock_tables()
  3. 5.x includes/database.mysql.inc \db_unlock_tables()
  4. 6.x includes/database.pgsql.inc \db_unlock_tables()
  5. 6.x includes/database.mysqli.inc \db_unlock_tables()
  6. 6.x includes/database.mysql.inc \db_unlock_tables()

Unlock all locked tables.

Related topics

3 calls to db_unlock_tables()
cache_set in includes/bootstrap.inc
Store data in the persistent cache.
variable_set in includes/bootstrap.inc
Set a persistent variable.
_block_rehash in modules/block.module
Update the 'blocks' DB table with the blocks currently exported by modules.

File

includes/database.mysql.inc, line 357
Database interface code for MySQL database servers.

Code

function db_unlock_tables() {
  db_query('UNLOCK TABLES');
}