R/odbc.R
odbcSetTransactionIsolationLevel.RdSet the Transaction Isolation Level for a Connection
odbcSetTransactionIsolationLevel(conn, levels)A DBI::DBIConnection object,
as returned by dbConnect().
One or more of 'read_uncommitted', 'read_committed', 'repeatable_read', 'serializable'.
if (FALSE) { # \dontrun{
# 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")
} # }