db_unlock_tables

Definition

db_unlock_tables()
drupal/includes/database.mysqli.inc, line 349

Description

Unlock all locked tables.

Related topics

Namesort iconDescription
Database abstraction layerAllow the use of different database servers using the same code base.

Code

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