in a project I need to set the transaction isolation level to SNAPSHOT, I know that it is possible to set it in java with
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
// STEP 4: Execute a query
System.out.println("Creating statement...");
conn.setTransactionIsolation(4096);
conn.setAutoCommit(false);
unfortunately I didn't find this possibility in Mybatis so is there a way to pass Mybatis a jdbc connection on which I already have setted it to this isolation level?