db_unlock_tables
- Versions
- 4.7 – 6
db_unlock_tables()
Unlock all locked tables. This function automatically commits a transaction.
Related topics
Code
includes/database.pgsql.inc, line 379
<?php
function db_unlock_tables() {
db_query('COMMIT');
}
?>Login or register to post comments 