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