function db_lock_table in Drupal 4
Same name in this branch
- 4 includes/database.mysqli.inc \db_lock_table()
- 4 includes/database.mysql.inc \db_lock_table()
- 4 includes/database.pgsql.inc \db_lock_table()
Same name and namespace in other branches
- 5 includes/database.mysqli.inc \db_lock_table()
- 5 includes/database.mysql.inc \db_lock_table()
- 5 includes/database.pgsql.inc \db_lock_table()
- 6 includes/database.mysqli.inc \db_lock_table()
- 6 includes/database.mysql.inc \db_lock_table()
- 6 includes/database.pgsql.inc \db_lock_table()
Lock a table.
Related topics
3 calls to db_lock_table()
- cache_set in includes/
bootstrap.inc - Store data in the persistent cache.
- variable_set in includes/
bootstrap.inc - Set a persistent variable.
- _block_rehash in modules/
block.module - Update the 'blocks' DB table with the blocks currently exported by modules.
File
- includes/
database.mysql.inc, line 350 - Database interface code for MySQL database servers.
Code
function db_lock_table($table) {
db_query('LOCK TABLES {' . db_escape_table($table) . '} WRITE');
}