* @throws SQLException
*/
public ManagedConnection getConnection(int isolation_level)
throws SQLException
{
ConnectionFactoryRegistry registry = omfContext.getConnectionFactoryRegistry();
ConnectionFactory connFactory = registry.lookupConnectionFactory(nontxConnectionFactoryName);
Map options = new HashMap();
options.put("transaction.isolation", new Integer(isolation_level));
return connFactory.getConnection(null, options);
}