| Converts the given transaction isolation level to a human readable string,
identical to the constant name found in Connection or
"TRANSACTION_UNDEFINED" if the level does not exist
Parameters: level - one of the transaction isolation level as found injava.sql.Connection a string representation of the given level, one of:"TRANSACTION_READ_UNCOMMITTED" ,"TRANSACTION_READ_COMMITTED" ,"TRANSACTION_REPEATABLE_READ" ,"TRANSACTION_SERIALIZABLE" ,"TRANSACTION_NONE" ,"TRANSACTION_UNDEFINED" because it specifies thattransactions are not supported.) See Also: java.sql.Connection.getTransactionIsolation |