db_unlock_tables()
drupal-5/includes/database.pgsql.inc, line 386
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. |
<?php
function db_unlock_tables() {
db_query('COMMIT');
}
?>