db_unlock_tables()
drupal/includes/database.pgsql.inc, line 385
Unlock all locked tables. This function automatically commits a transaction.
| Name | Description |
|---|---|
| Database abstraction layer | Allow the use of different database servers using the same code base. |
function db_unlock_tables() {
db_query('COMMIT');
}