Definition

db_unlock_tables()
drupal-5/includes/database.pgsql.inc, line 386

Description

Unlock all locked tables. This function automatically commits a transaction.

Related topics

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

Code

<?php
function db_unlock_tables() {
  db_query('COMMIT');
}
?>