function db_unlock_tables

Same name in this branch
  1. 6.x drupal-6.x/includes/database.mysqli.inc \db_unlock_tables()
  2. 6.x drupal-6.x/includes/database.mysql.inc \db_unlock_tables()
  3. 6.x drupal-6.x/includes/database.pgsql.inc \db_unlock_tables()

Unlock all locked tables.

Related topics

Archivo

drupal-6.x/includes/database.mysql.inc, line 342
Database interface code for MySQL database servers.

Código

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