Пример #1
0
 public SqlSession openSession() {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, false);
 }
Пример #2
0
 public SqlSession openSession(boolean autoCommit) {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, autoCommit);
 }
Пример #3
0
 public SqlSession openSession(TransactionIsolationLevel level) {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), level, false);
 }