function db_unlock_tables
Same name in this branch
- 6.x drupal-6.x/includes/database.mysqli.inc \db_unlock_tables()
- 6.x drupal-6.x/includes/database.mysql.inc \db_unlock_tables()
- 6.x drupal-6.x/includes/database.pgsql.inc \db_unlock_tables()
Unlock all locked tables. This function automatically commits a transaction.
Related topics
Archivo
- drupal-6.x/
includes/ database.pgsql.inc, line 379 - Database interface code for PostgreSQL database servers.
Código
function db_unlock_tables() {
db_query('COMMIT');
}