| Versions | |
|---|---|
| 4.7 – 6 | db_lock_table($table) |
Lock a table. This function automatically starts a transaction.
includes/
<?php
function db_lock_table($table) {
db_query('BEGIN; LOCK TABLE {' . db_escape_table($table) . '} IN EXCLUSIVE MODE');
}
?>