odbcSetTransactionIsolationLevel {odbc} | R Documentation |
Set the Transaction Isolation Level for a Connection
Description
Set the Transaction Isolation Level for a Connection
Usage
odbcSetTransactionIsolationLevel(conn, levels)
Arguments
conn |
A DBIConnection object, as returned by
|
levels |
One or more of 'read_uncommitted', 'read_committed', 'repeatable_read', 'serializable'. |
See Also
Examples
## Not run:
# Can use spaces or underscores in between words.
odbcSetTransactionIsolationLevel(con, "read uncommitted")
# Can also use the full constant name.
odbcSetTransactionIsolationLevel(con, "SQL_TXN_READ_UNCOMMITTED")
## End(Not run)
[Package odbc version 1.5.0 Index]