Ejemplo n.º 1
0
 public SqlSession openSession() {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, false);
 }
Ejemplo n.º 2
0
 public SqlSession openSession(boolean autoCommit) {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, autoCommit);
 }
Ejemplo n.º 3
0
 public SqlSession openSession(TransactionIsolationLevel level) {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), level, false);
 }