In some projects I'm working on, all queries are running in a transaction with READ UNCOMMITTED isolation level. So we had create a transaction for each query.
If we could set isolation level when creating db connection, we wouldn't need to create transactions.
I would like to have an option to set default isolation level with db connection creation.