1
0
mirror of synced 2025-01-18 06:21:40 +03:00

fixed typo

This commit is contained in:
phuson 2007-09-30 22:55:28 +00:00
parent 659d7482e4
commit e0dedf714f

View File

@ -1,4 +1,4 @@
A transaction isolation level sets the default transactional behaviour. As the name 'isolation level' suggests, the setting determines how isolated each transation is, or what kind of locks are associated with queries inside a transaction. The four availible levels are (in ascending order of strictness):
A transaction isolation level sets the default transactional behaviour. As the name 'isolation level' suggests, the setting determines how isolated each transation is, or what kind of locks are associated with queries inside a transaction. The four available levels are (in ascending order of strictness):
: {{READ UNCOMMITTED}} : Barely transactional, this setting allows for so-called 'dirty reads', where queries inside one transaction are affected by uncommitted changes in another transaction.